我在RouteCollection.php第218行中收到MethodNotAllowedHttpException: 当我在larave-localization路线组中发布表格时。
这是我的本地化路线组:
Route::group([
'prefix' => LaravelLocalization::setLocale(),
'middleware' => [ 'localeSessionRedirect', 'localizationRedirect' ] ], function() {
Route::post('/offerselect', 'SearchController@getCarList');
Route::get('/', 'PageController@index');
});
我在index.blade php中有一个表单,它会发布到/ offerselect 但是当我发布它时,我得到methodnotallowed异常。如果我把这个帖子放在小组之外,那就没有本地化了......
答案 0 :(得分:0)
检查
php artisan routes
查看您的路线是否正确定义。
更新:那是你的整个routes.php吗?