Init
This commit is contained in:
10
routes/web.php
Normal file
10
routes/web.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Support\Facades\Route;
|
||||
use Inertia\Inertia;
|
||||
|
||||
Route::get('/', function () {
|
||||
return Inertia::render('Welcome', [
|
||||
'appName' => config('app.name'),
|
||||
]);
|
||||
});
|
||||
Reference in New Issue
Block a user