我们都知道,当 APP_DEBUG = false
时,我们展示的错误页面是这样的
那我们怎么来自定义这个页面呢?其实很简单,打开 app/Exceptions/Handler.php
我们来重写下这个文件
<?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
文件,自定义你页面吧
欢迎大家一起加群学习:365969825
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。