与github桌面同步后,RouteCollection.php中的NotFoundHttpException

时间:2016-11-08 02:56:49

标签: php laravel github laravel-routing github-desktop

我的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 loadroute:clear,但没有任何工作。

1 个答案:

答案 0 :(得分:0)

运行composer update,然后再试一次。