2016年9月30日 星期五

如何自定义友好的报错页面

我们都知道,当 APP_DEBUG = false 时,會展示的错误页面.
那我们怎么来自定义这个页面呢?其实很简单,打开 app/Exceptions/Handler.php 我们来重写下这个文件


namespace App\Exceptions;
use Exception;
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
use Symfony\Component\Debug\ExceptionHandler as SymfonyDisplayer;

class Handler extends  ExceptionHandler
{
    /**
     *
     * @param \Exception $e
     *
     * @return \Symfony\Component\HttpFoundation\Response
     */
    protected function convertExceptionToResponse(Exception $e)
    {
        $debug = config('app.debug', false);

        if ($debug) {
            // 当 debug 为 true 时,返回默认的报错页面
            return (new SymfonyDisplayer($debug))->createResponse($e);
        }

        return response()->view('errors.default', ['expection' => $e], 500);
    }
}
然后就可以在 views/errors 下新建你的 default.blade.php 文件,自定义你页面吧

from : http://laravel.so/tricks/9024b7536d8275d9eba8b4b945840c03

沒有留言:

wibiya widget