9 lines
151 B
PHP
9 lines
151 B
PHP
|
<?php
|
||
|
|
||
|
use Illuminate\Support\Facades\Route;
|
||
|
use Inertia\Inertia;
|
||
|
|
||
|
Route::get('/', function () {
|
||
|
return Inertia::render('Home');
|
||
|
})->name('home');
|