Zakladne rozlozenie fix
This commit is contained in:
@@ -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');
|
||||
|
||||
Reference in New Issue
Block a user