Merhbalar ilk defa böyle birşey ile karşılaşıyorum.
Laravel localization paketini kullanıyorum.
`Route::group(
[
'prefix' => LaravelLocalization::setLocale(),
'middleware'=>[
'localeSessionRedirect',
'localizationRedirect'
]
], function () {
Route::group(['namespace' => 'api', 'prefix' => 'api','middleware'=>['web']], function () {
Route::post('/testtt',function (){
return 'a';
});
Route::group(['namespace' => 'block', 'prefix' => 'block'], function () {
Route::post('/store', 'indexController@store');
Route::get('/{access_token}', 'indexController@index');
});
});
});`
Buradaki /testtt olan post methodunu görüyor ama block içindeki store ı çağırdıgımda altındaki get methodu cagırıyor sorun ne olabilir