我的laravel项目显示此错误:NotFoundHttpException in RouteCollection.php
当我尝试使用github桌面将我的项目同步到github时,除此路线外:
Route::get('/', function () {
return view('welcome');
});
但是像下面这样的另一条简单路线将无效,并返回该错误。
Route::get('loa', function () {
return view('loa');
});
在路线列表中,使用路径命令:php artisan route:list
它表示存在。但它始终返回未找到的路线。我也尝试使用命令dump-auto load
或route:clear
,但没有任何工作。
答案 0 :(得分:0)
运行composer update,然后再试一次。