Featured tours working
This commit is contained in:
@@ -1,14 +1,13 @@
|
||||
<?php
|
||||
|
||||
use App\Models\Continent;
|
||||
use App\Models\Tour;
|
||||
use Illuminate\Support\Facades\Route;
|
||||
use Inertia\Inertia;
|
||||
|
||||
Route::get('/', function () {
|
||||
$continent = Continent::first();
|
||||
|
||||
return Inertia::render('Home',[
|
||||
'continent' => $continent,
|
||||
'featured_tours' => Tour::all()->random(3),
|
||||
]);
|
||||
})->name('home');
|
||||
|
||||
|
||||
Reference in New Issue
Block a user