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