我正在打开一个我的应用程序中没有的页面,为了摆脱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]
我错过了什么吗?
非常感谢您提出任何建议。