Files
mareike/app/Http/Controllers/TestRenderInertiaProvider.php
2026-09-04 09:27:48 +02:00

14 lines
302 B
PHP

<?php
namespace App\Http\Controllers;
use App\Providers\InertiaProvider;
class TestRenderInertiaProvider
{
public function index() {
$inertiaProvider = new InertiaProvider('Invoice/CreateInvoice', ['appName' => currentTenant()->name]);
return $inertiaProvider->render();
}
}