Added About Page

This commit is contained in:
2025-09-18 17:41:24 +10:00
parent 3a5f5ff0b7
commit ee1436c6f0
12 changed files with 161 additions and 8 deletions

View File

@@ -15,5 +15,11 @@ Route::get('/about', function () {
return Inertia::render('AboutUs');
})->name('about');
Route::get('/adventures/{tour}', function ($tour) {
return Inertia::render('TourNavigator',[
'tour' => Tour::where('internal_name', $tour)->with('countries.continent')->first(),
]);
})->name('tour');
require __DIR__.'/settings.php';
require __DIR__.'/auth.php';