Basic tenant structure

This commit is contained in:
2026-01-31 20:07:41 +01:00
parent 825af15962
commit 3570f442f5
35 changed files with 634 additions and 144 deletions

15
routes/api.php Normal file
View File

@@ -0,0 +1,15 @@
<?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'),
]);
});