Jak zwrócić niestandardowy komunikat o błędzie z sprawdzania poprawności metody kontrolera

$this->validate(
    $request, 
    ['thing' => 'required'],
    ['thing.required' => 'this is my custom error message for required']
);
Attractive Ape