name('shop.') ->group(function () { Route::get('/', [App\Http\Controllers\Shop\HomeController::class, 'index'])->name('home.index'); Route::get('carts', [App\Http\Controllers\Shop\CartsController::class, 'store'])->name('carts.store'); Route::get('products/{product}', [App\Http\Controllers\Shop\ProductsController::class, 'show'])->name('products.show'); });