2016-06-20 13:35:59 +00:00
|
|
|
<?php
|
|
|
|
|
2024-08-25 08:26:29 +00:00
|
|
|
use Illuminate\Http\Request;
|
2016-06-20 13:35:59 +00:00
|
|
|
|
2019-11-08 12:08:34 +00:00
|
|
|
define('LARAVEL_START', microtime(true));
|
|
|
|
|
2024-08-25 08:26:29 +00:00
|
|
|
// Determine if the application is in maintenance mode...
|
|
|
|
if (file_exists($maintenance = __DIR__.'/../storage/framework/maintenance.php')) {
|
|
|
|
require $maintenance;
|
|
|
|
}
|
2016-06-20 13:35:59 +00:00
|
|
|
|
2024-08-25 08:26:29 +00:00
|
|
|
// Register the Composer autoloader...
|
2019-11-08 12:08:34 +00:00
|
|
|
require __DIR__.'/../vendor/autoload.php';
|
2016-06-20 13:35:59 +00:00
|
|
|
|
2024-08-25 08:26:29 +00:00
|
|
|
// Bootstrap Laravel and handle the request...
|
|
|
|
(require_once __DIR__.'/../bootstrap/app.php')
|
|
|
|
->handleRequest(Request::capture());
|