在this thread之后使用Whoops作为调试器,
我无法看到像这样的chrome页面:
但无论我得到什么错误,它看起来都是这样的:
我尝试的事情:
composer require filp/whoops --dev
public function render($request, Exception $e) {
if (config('app.debug') && ! $request->ajax()) {
$whoops = new \Whoops\Run;
$whoops->pushHandler(new \Whoops\Handler\PrettyPageHandler);
return $whoops->handleException($e);
}
return parent::render($request, $e);
}
'debug' => env('APP_DEBUG', true)
php artisan config:clear
如何将Whoops带入我的Laravel5.2项目?