我从web.php文件中清除了每个关闭的实例,但是当我运行php artisan route:cache时仍然遇到此错误。如何解决此问题。
我使用的路由格式为:
Route::get('/home',[
'uses'=>'HomeController@index',
])->name('home');
,另一种格式是
Route::get('/profile',[
'uses'=>'profileController@index',
]);
修改:格式化代码
答案 0 :(得分:0)
我想出了一种解决此错误的方法,该错误是由于 routes > api.php
中存在Route引起的,只需将其注释掉即可成功缓存文件。
// Route::middleware('auth:api')->get('/user', function (Request $request) {
// return $request->user();
// });