я бы в vendor вообще не лез
Лучше редактировать тут app/Exceptions/Handler.php
Мой пример
/**
* Render an exception into an HTTP response.
*
* @param \Illuminate\Http\Request $request
* @param \Exception $exception
* @return \Illuminate\Http\Response
*/
public function render($request, Exception $exception)
{
if ($exception instanceof MethodNotAllowedHttpException) {
if ($request->ajax()) {
return response()->json(['error' => 'method invaild.'], 404);
}
abort(404);
}
return parent::render($request, $exception);
}
Вот статья -
тут