14 lines
300 B
PHP
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();
|
|
}
|
|
}
|