之前一切正常,当我添加了一个路由Routes::get('orders',[OrderController::class, 'index']);,然后我使用php artisan optimize优化laravel,这是通过一个错误,我不知道为什么它来了,我仔细检查每一个和一切,但这个错误是远远不同于正常的错误导入类和正确的路由其导入的web.php第一个
Routes::get('orders',[OrderController::class, 'index']);
php artisan optimize
nvbavucw1#
Route中有多余's'请尝试更改为
Route::put('update-order/{id}',[UserController::class , 'updateOrder']); Route::get('orders',[OrderController::class, 'index']);
1条答案
按热度按时间nvbavucw1#
Route中有多余's'请尝试更改为