16 lines
321 B
PHP
16 lines
321 B
PHP
<?php
|
|
|
|
use App\Models\Continent;
|
|
use App\Models\Tour;
|
|
use Illuminate\Support\Facades\Route;
|
|
use Inertia\Inertia;
|
|
|
|
Route::get('/', function () {
|
|
return Inertia::render('Home',[
|
|
'featured_tours' => Tour::all()->random(3),
|
|
]);
|
|
})->name('home');
|
|
|
|
require __DIR__.'/settings.php';
|
|
require __DIR__.'/auth.php';
|