Added About Page

This commit is contained in:
2025-09-19 00:33:32 +10:00
parent ee1436c6f0
commit ef9318b5a3
10 changed files with 395 additions and 42 deletions

View File

@@ -16,8 +16,10 @@ Route::get('/about', function () {
})->name('about');
Route::get('/adventures/{tour}', function ($tour) {
return Inertia::render('TourNavigator',[
'tour' => Tour::where('internal_name', $tour)->with('countries.continent')->first(),
return Inertia::render('TourOverview',[
'tour' => Tour::where('internal_name', $tour)
->with('tour_days')
->with('countries.continent')->first(),
]);
})->name('tour');