Files
nexus/app/Domains/Unterschrift/Controllers/UnterschriftController.php
T
2026-07-21 14:35:34 +02:00

15 lines
281 B
PHP

<?php
namespace App\Domains\Unterschrift\Controllers;
use App\Providers\InertiaProvider;
use Inertia\Response;
class UnterschriftController
{
public function __invoke(): Response
{
return (new InertiaProvider('Unterschrift/Unterschrift', []))->render();
}
}