Document signing

This commit is contained in:
2026-07-21 14:35:34 +02:00
parent 56b603aba0
commit 6e726ef34d
18 changed files with 1239 additions and 1 deletions
@@ -0,0 +1,14 @@
<?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();
}
}