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
沒有留言:
張貼留言