Files
scraps/app/Http/Controllers/DashboardController.php
2024-06-22 16:54:14 +01:00

14 lines
196 B
PHP

<?php
namespace App\Http\Controllers;
use Inertia\Inertia;
class DashboardController extends Controller
{
public function index()
{
return Inertia::render('Dashboard');
}
}