This commit is contained in:
@@ -3,10 +3,14 @@
|
||||
use Illuminate\Support\Facades\Route;
|
||||
use Inertia\Inertia;
|
||||
|
||||
Route::get('/', function () {
|
||||
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');
|
||||
|
||||
Reference in New Issue
Block a user