group(function () { Route::get('/dashboard', [DashboardController::class, 'show'])->name('dashboard'); Route::get('/portfolio/create', [PortfolioController::class, 'create'])->name('portfolio.create'); Route::get('/portfolio/{portfolio}', [PortfolioController::class, 'show'])->name('portfolio.show'); });