diff --git a/app/Exceptions/Handler.php b/app/Exceptions/Handler.php index b8f415381..fb51bd159 100644 --- a/app/Exceptions/Handler.php +++ b/app/Exceptions/Handler.php @@ -109,6 +109,6 @@ class Handler extends ExceptionHandler return response()->view('errors.500', [], 500); } - return response()->view('errors.500', [], 500); + return parent::render($request, $exception); } }