Answer the question
In order to leave comments, you need to log in
Why can a validator return a blank page?
Good evening. There is an input for photos
Validator:
$this->validate($request, [
'photo' => 'image'
]);
Answer the question
In order to leave comments, you need to log in
The solution is found, it can be useful to someone.
The day before I was tinkering with:
App\Exception\Handler
public function render($request, Exception $exception)
{
if ($exception instanceof CustomException) {
return response()->view('errors.custom', [], 500);
}
return parent::render($request, $exception);
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question