Files
mareike/app/Http/Controllers/TestRenderInertiaProvider.php
2026-02-03 09:33:18 +01:00

14 lines
300 B
PHP

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