Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 749 Bytes

File metadata and controls

32 lines (23 loc) · 749 Bytes

فلترة الكلمات المحظورة

لا تحتوي الحزمة على قائمة كلمات محظورة افتراضية، لأن هذه القوائم تختلف حسب المشروع واللهجة والسياق.

مصدر array

Arabic::containsBadWords($text, ['blocked_one', 'blocked_two']);

مصدر TXT

Arabic::containsBadWords($text, resource_path('profanity/blocked.txt'));

مصدر JSON

{
  "words": ["blocked_one"],
  "files": ["/absolute/path/to/more.txt"]
}

Laravel rule

'comment' => ['nullable', new NoBadWords()],
'comment' => ['nullable', new NoBadWords(['blocked_one'])],
'comment' => ['nullable', new NoBadWords(resource_path('profanity/blocked.txt'))],