design installed

This commit is contained in:
2026-07-02 19:57:25 +02:00
parent 5c667fd1cf
commit 872972ea48
21 changed files with 1230 additions and 217 deletions
@@ -0,0 +1,14 @@
<?php
namespace App\Domains\Schulbefreiung\Controllers;
use App\Providers\InertiaProvider;
use Inertia\Response;
class SchulbefreiungController
{
public function __invoke(): Response
{
return (new InertiaProvider('Schulbefreiung/Schulbefreiung', []))->render();
}
}