We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca47e6e commit bf64bdfCopy full SHA for bf64bdf
bootstrap/app.php
@@ -8,7 +8,11 @@
8
9
return Application::configure(basePath: dirname(__DIR__))
10
->withRouting(
11
- web: __DIR__.'/../routes/web.php',
+ web: [
12
+ __DIR__.'/../routes/web.php',
13
+ __DIR__.'/../routes/settings.php',
14
+ __DIR__.'/../routes/auth.php',
15
+ ],
16
commands: __DIR__.'/../routes/console.php',
17
health: '/up',
18
)
routes/web.php
@@ -10,6 +10,3 @@
Route::get('dashboard', function () {
return Inertia::render('Dashboard');
})->middleware(['auth', 'verified'])->name('dashboard');
-
-require __DIR__.'/settings.php';
-require __DIR__.'/auth.php';
0 commit comments