2026-04-23 03:13:33 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
use Illuminate\Foundation\Application;
|
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
|
|
|
|
|
|
define('LARAVEL_START', microtime(true));
|
|
|
|
|
|
|
|
|
|
// Determine if the application is in maintenance mode...
|
2026-04-23 23:02:50 +02:00
|
|
|
if (file_exists($maintenance = __DIR__ . '/../storage/framework/maintenance.php')) {
|
2026-04-23 03:13:33 +02:00
|
|
|
require $maintenance;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Register the Composer autoloader...
|
2026-04-23 23:02:50 +02:00
|
|
|
require __DIR__ . '/../vendor/autoload.php';
|
2026-04-23 03:13:33 +02:00
|
|
|
|
|
|
|
|
// Bootstrap Laravel and handle the request...
|
|
|
|
|
/** @var Application $app */
|
2026-04-23 23:02:50 +02:00
|
|
|
$app = require_once __DIR__ . '/../bootstrap/app.php';
|
2026-04-23 03:13:33 +02:00
|
|
|
|
|
|
|
|
$app->handleRequest(Request::capture());
|