Skip to content

Commit

Permalink
change exception handler return response.
Browse files Browse the repository at this point in the history
  • Loading branch information
cuneytsenturk committed Feb 4, 2019
1 parent 6828f4a commit 8745b91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Exceptions/Handler.php
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,6 @@ private function handleExceptions($request, $exception)
return response()->view('errors.500', [], 500);
}

return response()->view('errors.500', [], 500);
return parent::render($request, $exception);
}
}

0 comments on commit 8745b91

Please sign in to comment.