Files
nexus/app/Domains/Dashboard/Controllers/DashboardController.php
T
2026-07-02 15:52:13 +02:00

18 lines
378 B
PHP

<?php
namespace App\Domains\Dashboard\Controllers;
use App\Providers\InertiaProvider;
use Illuminate\Http\Request;
use Inertia\Inertia;
use Inertia\Response;
class DashboardController
{
public function __invoke(Request $request): Response
{
$inertiaProvider = new InertiaProvider('Dashboard/Dashboard', []);
return $inertiaProvider->render();
}
}