16 lines
250 B
PHP
16 lines
250 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
use Inertia\Inertia;
|
|
|
|
|
|
Route::get('/', ['TestController', 'index']);
|
|
|
|
|
|
|
|
Route::get('/inertia', function () {
|
|
return Inertia::render('Pages/Home', [
|
|
'appName' => config('app.name'),
|
|
]);
|
|
});
|