joshbrw/laravel-validation-rule-registration
A package that is designed to help aid rapid development and registration of custom Validation Rules in Laravel
3,057
| Install | |
|---|---|
composer require joshbrw/laravel-validation-rule-registration |
|
| Latest Version: | v0.1.7 |
| PHP: | >=7.0 |
| License: | MIT |
| Last Updated: | Nov 29, 2017 |
| Links: | GitHub · Packagist |
Maintainer: joshbrw
laravel-validation-rule-registration
A package that is designed to help aid rapid development and registration of custom Validation Rules in Laravel
Usage
- Create your Validation Rule class, ensure it implements the
Joshbrw\ValidationRule\Contracts\ValidationRulecontract. - In your service provider
use RegistersValidationRules - In the
boot()method of your service provider;- To register a validation rule:
$this->registerValidationRule('rule_name', RuleClass::class) - To register a validation replacer:
$this->registerValidationReplacer('rule_name', RuleClass::class);
- To register a validation rule: