1)使用 laravel 抛出 404 头很简单
abort(404);
还可以添加描述
abort(404, '404 File Not Fund');
2)如果想自定义 404 页面模版,直接添加/修改 resources/views/errors/404.blade.php 文件就可以了