Metapackage for https://github.com/DivineOmega/laravel-offensive-validation-rule
This rule will validate that a field isn't offensive. It can be useful to check user supplied data that may be publicly displayed, such as usernames or comments., (*1)
composer require laravel-validation-rules/offensive
use DivineOmega\LaravelOffensiveValidationRule\Offensive; $request->validate([ 'username' => ['required', new Offensive], ]);
You are also able to specifiy a custom offensive word blacklist and whitelist. If you wish to do this, check the additional usage examples., (*2)
This project is licensed under a GNU Lesser General Public License v3.0 which you can find in this LICENSE., (*3)
If you have any feedback, comments or suggestions, please feel free to open an issue within this repository., (*4)
This package is part of the Laravel Validation Rules collection. If you're after more useful validation rules, head to the Laravel Validation Rules website., (*5)