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