Added About Page
This commit is contained in:
@@ -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';
|
||||
|
||||
Reference in New Issue
Block a user