Files
roxane/routes/web.php
Nebulae 9649d99e15
All checks were successful
Deploy Roxane to Preprod / deploy (push) Successful in 1m18s
feat(Nextcloud sync & optimize)
2026-01-30 15:27:23 +01:00

24 lines
568 B
PHP

<?php
use Illuminate\Support\Facades\Route;
use Inertia\Inertia;
Route::get('/welcome', function () {
return Inertia::render('welcome');
})->name('home');
Route::get('/', function () {
return Inertia::render('maintenance');
})->name('maintenance');
Route::middleware(['auth', 'verified'])->group(function () {
Route::get('dashboard', function () {
return Inertia::render('dashboard');
})->name('dashboard');
});
require __DIR__.'/settings.php';
require __DIR__.'/auth.php';
require __DIR__.'/forms.php';
require __DIR__.'/dev-routes.php';