Files
alrahma_sunday_school_api/app/Http/Kernel.php
T
2026-03-05 12:29:37 -05:00

71 lines
2.1 KiB
PHP
Executable File

<?php
namespace App\Http;
use Illuminate\Foundation\Http\Kernel as HttpKernel;
class Kernel extends HttpKernel
{
/**
* The application's global HTTP middleware stack.
*
* These middleware run during every request to your application.
*/
protected $middleware = [
// Handles CORS
\Illuminate\Http\Middleware\HandleCors::class,
// Trust proxies
\Illuminate\Http\Middleware\TrustProxies::class,
// Prevent request size attacks
\Illuminate\Http\Middleware\ValidatePostSize::class,
// Trim whitespace
\App\Http\Middleware\TrimStrings::class,
// Convert empty strings to null
\Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull::class,
];
/**
* The application's route middleware groups.
*/
protected $middlewareGroups = [
'web' => [
\App\Http\Middleware\EncryptCookies::class,
\Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class,
\Illuminate\Session\Middleware\StartSession::class,
\Illuminate\View\Middleware\ShareErrorsFromSession::class,
\Illuminate\Routing\Middleware\SubstituteBindings::class,
],
'api' => [
// Throttling (optional)
\Illuminate\Routing\Middleware\ThrottleRequests::class.':api',
// JWT Authentication
\PHPOpenSourceSaver\JWTAuth\Http\Middleware\Authenticate::class,
\Illuminate\Routing\Middleware\SubstituteBindings::class,
],
];
/**
* The application's route middleware.
*
* These may be assigned to routes individually.
*/
protected $routeMiddleware = [
'auth' => \App\Http\Middleware\Authenticate::class,
// Laravel default middleware
'bindings' => \Illuminate\Routing\Middleware\SubstituteBindings::class,
'throttle' => \Illuminate\Routing\Middleware\ThrottleRequests::class,
// JWT middleware
'jwt.auth' => \PHPOpenSourceSaver\JWTAuth\Http\Middleware\Authenticate::class,
'jwt.refresh' => \PHPOpenSourceSaver\JWTAuth\Http\Middleware\RefreshToken::class,
];
}