11 lines
190 B
PHP
11 lines
190 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
use Inertia\Inertia;
|
|
|
|
Route::get('/', function () {
|
|
return Inertia::render('Welcome', [
|
|
'appName' => config('app.name'),
|
|
]);
|
|
});
|