Как вернуть пользовательское сообщение об ошибке из проверки метода контроллера
$this->validate(
$request,
['thing' => 'required'],
['thing.required' => 'this is my custom error message for required']
);
Attractive Ape