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