Код: Выделить всё
Route::group(['middleware' => ['setLocale']], function () {
Route::get('/products/{slug}', [ProductController::class, 'fetchProduct']);
});
Route::group(['middleware' => ['setLocale'], 'prefix' => '{locale?}', 'where' => ['locale' => 'en|fr|de|jp']], function () {
Route::get('/', LandingController::class);
Route::get('/products/{slug}', [ProductController::class, 'fetchProduct']);
});
Код: Выделить всё
Too few arguments to function App\\Http\\Controllers\\Front\\ProductController::fetchProduct(), 1 passed in C:\\...\\ControllerDispatcher.php on line 46 and exactly 2 expected Код: Выделить всё
public function fetchProduct($locale = null, $slug) {dd($slug);}
Подробнее здесь: https://stackoverflow.com/questions/791 ... ute-params
Мобильная версия