查看未找到[errors.404]

时间:2016-11-19 07:34:24

标签: laravel-5 laravel-5.2 laravel-5.1 laravel-5.3

我正在打开一个我的应用程序中没有的页面,为了摆脱404错误,我写了下面的代码。

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

目录结构如下所示,您可以看到404 Blade内部错误目录

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

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

  

查看未找到[errors.404]

我错过了什么吗?

非常感谢您提出任何建议。

1 个答案:

答案 0 :(得分:1)

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

您将文件命名为:404.bade.php而不是404. 刀片 .php

enter image description here