group(function () { Route::get('/dashboard', [DashboardController::class, 'show'])->name('dashboard'); Route::view('/import-export', 'import-export')->name('import-export'); Route::get('/portfolio/create', [PortfolioController::class, 'create'])->name('portfolio.create'); Route::get('/portfolio/{portfolio}', [PortfolioController::class, 'show'])->name('portfolio.show'); Route::get('/portfolio/{portfolio}/{symbol}', [HoldingController::class, 'show'])->name('holding.show'); Route::get('/transactions', [TransactionController::class, 'index'])->name('transaction.index'); }); // overwrites jetstream routes Route::get('/terms', [TermsOfServiceController::class, 'show'])->name('terms.show'); Route::get('/privacy', [PrivacyPolicyController::class, 'show'])->name('policy.show');