You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 23, 2018. It is now read-only.
Sam Rapaport edited this page Jun 26, 2016
·
2 revisions
Laravel Kickstart requires the filp/whoops error handler by default, however one manual step is required to utilize it.
Head over to app/Exceptions/Handler.php and replace:
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
with:
use Samrap\Kickstart\Exceptions\Handler as ExceptionHandler;
Now, every time an error is thrown while in debug mode, the Whoops handler will be used to provide beautiful error reporting. And not to worry, the Whoops handler will never be used in production mode.