bigelephant/laravel-rules is a Laravel package for alternative way to define rules in laravel..
It currently has 5 GitHub stars and 45 downloads on Packagist.
Install it with composer require bigelephant/laravel-rules.
Discover more Laravel packages by bigelephant
or browse all Laravel packages to compare alternatives.
Last updated
Alternative way to define rules in laravel.
This is just for a more PHP like syntax on rules with laravel. I personally find it easier to read at a glance. Also designed to be used in your own validators.
$rules = [
'username' => 'required|alphaDash|between:3,100',
'email' => 'required|email',
'password' => 'required|confirmed|min:5',
'terms' => 'accepted',
];
$rules = [
'username' => Rule::required()->alphaDash()->between(3, 100),
'email' => Rule::required()->email(),
'password' => Rule::required()->confirmed()->min(5),
'terms' => Rule::accepted(),
];
Add the following to the "require" section of your composer.json file:
"bigelephant/laravel-rules": "dev-master"
Edit the app/config/app.php file and...
providers array: 'BigElephant\LaravelRules\RuleServiceProvider',
aliases array: 'Rule' => 'BigElephant\LaravelRules\RuleFacade',