7 lines
149 B
PHP
7 lines
149 B
PHP
|
<?php
|
||
|
if (config('app.debug')) {
|
||
|
$whoops = new \Whoops\Run;
|
||
|
$whoops->pushHandler(new \Whoops\Handler\PrettyPageHandler);
|
||
|
$whoops->register();
|
||
|
}
|
||
|
?>
|