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 例外が発生します。グループの外に投稿を配置すると、ローカライズなしで機能します....