-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathapp.php
51 lines (43 loc) · 1.91 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?php
use Illuminate\Foundation\Application;
use Illuminate\Foundation\Configuration\Exceptions;
use Illuminate\Foundation\Configuration\Middleware;
use Sentry\Laravel\Integration;
return Application::configure(basePath: dirname(__DIR__))
->withProviders([
\Intervention\Image\ImageServiceProvider::class,
\Torann\GeoIP\GeoIPServiceProvider::class,
\MartinLindhe\VueInternationalizationGenerator\GeneratorProvider::class,
\willvincent\Feeds\FeedsServiceProvider::class,
\Barryvdh\LaravelIdeHelper\IdeHelperServiceProvider::class
])
->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('/');
$middleware->append([
\Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode::class,
\Spatie\CookieConsent\CookieConsentMiddleware::class,
]);
$middleware->web([
\App\Http\Middleware\CheckBrowser::class,
\App\Http\Middleware\Locale::class,
\App\Http\Middleware\CheckConsent::class
]);
$middleware->throttleApi('60,1');
$middleware->replace(\Illuminate\Http\Middleware\TrustProxies::class, \App\Http\Middleware\TrustProxies::class);
$middleware->alias([
'bindings' => \Illuminate\Routing\Middleware\SubstituteBindings::class,
'permission' => \Spatie\Permission\Middleware\PermissionMiddleware::class,
'role' => \Spatie\Permission\Middleware\RoleMiddleware::class,
]);
})
->withExceptions(function (Exceptions $exceptions) {
Integration::handles($exceptions);
})->create();