Files
asm-dashboard/routes/web.php
2024-11-10 19:06:42 +01:00

17 lines
384 B
PHP

<?php
use App\Http\Controllers\ProfileController;
use Illuminate\Foundation\Application;
use Illuminate\Support\Facades\Route;
use Inertia\Inertia;
Route::get('/', function () {
return Inertia::render('Home');
});
Route::get('/report/{page}/dashboard', function (int $page = 0) {
return Inertia::render('Dashboard', [
'page' => $page
]);
})->name('dashboard');