17 lines
384 B
PHP
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');
|