2023-03-03 10:01:23 +11:00
|
|
|
<?php
|
|
|
|
|
2025-02-16 23:36:34 +11:00
|
|
|
use Illuminate\Http\Request;
|
2023-03-03 10:01:23 +11:00
|
|
|
|
2025-02-16 23:36:34 +11:00
|
|
|
define('LARAVEL_START', microtime(true));
|
2023-03-03 10:01:23 +11:00
|
|
|
|
2025-02-16 23:36:34 +11:00
|
|
|
// Determine if the application is in maintenance mode...
|
|
|
|
if (file_exists($maintenance = __DIR__.'/../storage/framework/maintenance.php')) {
|
|
|
|
require $maintenance;
|
|
|
|
}
|
2023-03-03 10:01:23 +11:00
|
|
|
|
2025-02-16 23:36:34 +11:00
|
|
|
// Register the Composer autoloader...
|
|
|
|
require __DIR__.'/../vendor/autoload.php';
|
|
|
|
|
|
|
|
// Bootstrap Laravel and handle the request...
|
|
|
|
(require_once __DIR__.'/../bootstrap/app.php')
|
|
|
|
->handleRequest(Request::capture());
|