Improved exception handler for AJAX requests

This commit is contained in:
Dane Everitt 2016-02-08 17:59:37 -05:00
parent 037a923363
commit 76049c5860

View File

@ -72,10 +72,11 @@ class Handler extends ExceptionHandler
// If we are debugging, return the exception in it's full manner.
return response()->json([
'error' => $e->getMessage(),
'error' => (empty($e->getMessage())) ? $exception : $e->getMessage(),
'code' => $e->getCode(),
'file' => $e->getFile(),
'line' => $e->getLine()
'line' => $e->getLine(),
'trace' => $e->getTrace(),
], 500);
}