Files
intranet/bootstrap/errors.php

7 lines
149 B
PHP
Raw Permalink Normal View History

2020-12-01 17:23:13 -03:00
<?php
if (config('app.debug')) {
$whoops = new \Whoops\Run;
$whoops->pushHandler(new \Whoops\Handler\PrettyPageHandler);
$whoops->register();
}
?>