ramonbakker1992 / validation-rules-helper
This package allows validation rules to be defined globally and reused. This way you can use the same rules for your Controller, Action classes, API post/update routes, Livewire and other sections.
Fund package maintenance!
Proman Software B.V.
Requires
- php: ^8.2
- illuminate/contracts: ^10.0||^11.0
- spatie/laravel-package-tools: ^1.16
Requires (Dev)
- laravel/pint: ^1.14
- nunomaduro/collision: ^8.1.1||^7.10.0
- orchestra/testbench: ^9.0.0||^8.22.0
- pestphp/pest: ^2.34
- pestphp/pest-plugin-arch: ^2.7
- pestphp/pest-plugin-laravel: ^2.3
README
This package allows validation rules to be defined globally and reused. This way you can use the same rules for your Controller, Action classes, API post/update routes, Livewire and other sections.
Installation
You can install the package via composer:
composer require ramonbakker1992/validation-rules-helper
Usage
Create a validation class that extends ValidationRules
class ProjectValidation extends ValidationRules { protected function validation() { return [ 'name' => 'string|max:100', 'number' => 'numeric|between:1000,9999', 'start_date' => 'date', 'end_date' => 'date|after_or_equal:start_date', ]; } }
Use in controller, action class or where ever you need the validation rules:
$rules = ProjectValidation::rules() ->required([ 'name', 'start_date' => 'required_with:end_date' ]) ->all();
Changelog
Please see CHANGELOG for more information on what has changed recently.
Credits
License
The MIT License (MIT). Please see License File for more information.