laravel custom validation rules register code example
Example 1: laravel custom validation rules
php artisan make:rule Uppercase
Example 2: custom rule laravel validation
public function store()
{
$this->validate(request(), [
'song' => [function ($attribute, $value, $fail) {
if ($value <= 10) {
$fail(':attribute needs more cowbell!');
}
}]
]);
}
Example 3: laravel custom validation
php artisan make:rule RuleName