Skip to content

Instantly share code, notes, and snippets.

@JFOC
Forked from jacurtis/App\Exceptions\Handler.php
Created February 2, 2018 04:11
Show Gist options
  • Save JFOC/ca12177e69ba13832b643f24c0711cb2 to your computer and use it in GitHub Desktop.
Save JFOC/ca12177e69ba13832b643f24c0711cb2 to your computer and use it in GitHub Desktop.
How to get filp/whoops to work in Laravel 5.2 or 5.3 - Add this code to your `App\Exceptions\Handler.php` file.
/**
* Create a Symfony response for the given exception.
*
* @param \Exception $e
* @return mixed
*/
protected function convertExceptionToResponse(Exception $e)
{
if (config('app.debug')) {
$whoops = new \Whoops\Run;
$whoops->pushHandler(new \Whoops\Handler\PrettyPageHandler);
return response()->make(
$whoops->handleException($e),
method_exists($e, 'getStatusCode') ? $e->getStatusCode() : 500,
method_exists($e, 'getHeaders') ? $e->getHeaders() : []
);
}
return parent::convertExceptionToResponse($e);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment