laravel 8 validation error custom code example
Example 1: how to add an custom error to validater error in laravel
if (request('event') == null) {
$validator->errors()->add('event', 'Please select an event');
}
Example 2: laravel custom validation
php artisan make:rule RuleName