-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp.php
32 lines (27 loc) · 1.05 KB
/
app.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php
use App\Providers\AppServiceProvider;
use Illuminate\Foundation\Application;
use Illuminate\Foundation\Configuration\Exceptions;
use Illuminate\Foundation\Configuration\Middleware;
return Application::configure(basePath: dirname(__DIR__))
->withProviders()
->withRouting(
web: __DIR__.'/../routes/web.php',
// api: __DIR__.'/../routes/api.php',
commands: __DIR__.'/../routes/console.php',
// channels: __DIR__.'/../routes/channels.php',
health: '/up',
)
->withMiddleware(function (Middleware $middleware) {
$middleware->redirectGuestsTo(fn () => route('login'));
$middleware->redirectUsersTo(AppServiceProvider::HOME);
$middleware->web(\App\Http\Middleware\HandleInertiaRequests::class);
$middleware->throttleApi();
$middleware->alias([
'vpn' => \App\Http\Middleware\Vpn::class,
'vpn.or.person' => \App\Http\Middleware\VpnOrPerson::class,
]);
})
->withExceptions(function (Exceptions $exceptions) {
//
})->create();