查看 [errors.404] 未找到

View [errors.404] not found

我正在打开我的应用程序中不存在的页面,为了摆脱 404 错误,我编写了以下代码。

public function report(Exception $exception)
{
    if($this->isHttpException($exception)) {
        switch ($exception->getStatusCode()) {
            case '404':
                return \Response::view('errors.404');
        }
    }
    parent::report($exception);
}

目录结构如下,你可以看到errors目录里面有404 Blade

My Directory Structure here. Please click it to view the details

当我运行上面的代码时,它显示下面的错误。

View [errors.404] not found

我是不是漏掉了什么?

非常感谢您的任何建议。

修复文件名中的拼写错误。 Blade 拼写错误。

您将文件命名为:404.bade.php 而不是 404。blade。php