Zakladne rozlozenie fix

This commit is contained in:
2023-02-13 18:27:36 +01:00
parent 9eea644d0e
commit 58255a558d
4 changed files with 139 additions and 12 deletions

View File

@@ -28,7 +28,7 @@ use Inertia\Inertia;
Route::get('/', function () {
return Inertia::render('Rpo');
});
})->name('rpo');
Route::get('/results', function () {
return Inertia::render('Results');
@@ -38,6 +38,15 @@ Route::get('/dashboard', function () {
return Inertia::render('Dashboard');
})->middleware(['auth', 'verified'])->name('dashboard');
Route::get('/info', function () {
return Inertia::render('Info');
})->name('info');
Route::get('/doc', function () {
return Inertia::render('Doc');
})->name('doc');
Route::middleware('auth')->group(function () {
Route::get('/profile', [ProfileController::class, 'edit'])->name('profile.edit');
Route::patch('/profile', [ProfileController::class, 'update'])->name('profile.update');