Skip to content

Instantly share code, notes, and snippets.

@jacurtis
Created July 28, 2016 02:31
Show Gist options
  • Star 46 You must be signed in to star a gist
  • Fork 19 You must be signed in to fork a gist
  • Save jacurtis/849ba1847844555edbaf3cbc1de3e17f to your computer and use it in GitHub Desktop.
Save jacurtis/849ba1847844555edbaf3cbc1de3e17f 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);
}
@sakibbuddy
Copy link

Nice Work!

@geniusrim
Copy link

geniusrim commented Sep 26, 2017

Is this work on 5.4? When I use this into test environment it works and the laravel version is 5.4. And I use this to my work environment it doesn't work and the laravel version is 5.4.
And if not how I can use in 5.4?
I really like this so I really want to use in 5.4 :(

@devCLT
Copy link

devCLT commented Oct 2, 2017

Thanks Alex! I'm using Laravel 5.4.30 (PHP 5.6.30 and Apache ) and it works for me. FYI: After the composer require filp/whoops completed, the messages in my command window mentioned I might want to also require whoops/soap so I also did that....doubt it matters to work on 5.4 but just in case.

@farzamtm
Copy link

farzamtm commented Jan 2, 2019

Great, That worked for me.

@MrBhola
Copy link

MrBhola commented Aug 25, 2019

Thanks Alex sir ! and I have a question . I have just update my old laravel 5.3 to 5.8 ... so does it work in same way as you said or not ?

@jamestangeres
Copy link

Thanks, Sir!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment