当我尝试访问我的项目时,我得到:
抱歉,找不到您要找的页面
我已经调查了这个问题并发现运行:php artisan route:list
返回空,即使我的routes / web.php有很多路由:
/** Auth Routes*/
Auth::routes();
/** Homepage Route*/
Route::get('/', function () {
return view('layout');
});
我尝试过各种命令:
php artisan route:cache
php artisan route:clear
php artisan cache:clear