哎呀Laravel 5.2无法正常工作

时间:2016-09-18 03:48:55

标签: php debugging exception-handling laravel-5.2 whoops

this thread之后使用Whoops作为调试器,

我无法看到像这样的chrome页面:

enter image description here

但无论我得到什么错误,它看起来都是这样的:

enter image description here

我尝试的事情:

  1. 运行composer require filp/whoops --dev
  2. 修改app / Exceptions / Handler.php
  3. 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); }

    1. 修改config / app.php
    2. 'debug' => env('APP_DEBUG', true)

      1. 运行php artisan config:clear
      2. 如何将Whoops带入我的Laravel5.2项目?

0 个答案:

没有答案