2015-07-08 03:34:58 -04:00
|
|
|
<?php
|
|
|
|
|
2020-12-09 16:00:01 -05:00
|
|
|
use Illuminate\Http\Request;
|
2015-07-08 03:34:58 -04:00
|
|
|
|
2017-09-26 13:22:15 -04:00
|
|
|
define('LARAVEL_START', microtime(true));
|
|
|
|
|
2024-03-19 17:11:58 -04:00
|
|
|
// Determine if the application is in maintenance mode...
|
2022-05-23 21:01:33 -04:00
|
|
|
if (file_exists($maintenance = __DIR__.'/../storage/framework/maintenance.php')) {
|
|
|
|
require $maintenance;
|
2020-12-09 16:00:01 -05:00
|
|
|
}
|
2015-07-08 03:34:58 -04:00
|
|
|
|
2024-03-19 17:11:58 -04:00
|
|
|
// Register the Composer autoloader...
|
2020-12-09 16:00:01 -05:00
|
|
|
require __DIR__.'/../vendor/autoload.php';
|
2015-07-08 03:34:58 -04:00
|
|
|
|
2024-03-19 17:11:58 -04:00
|
|
|
// Bootstrap Laravel and handle the request...
|
|
|
|
(require_once __DIR__.'/../bootstrap/app.php')
|
|
|
|
->handleRequest(Request::capture());
|