Lae/public/index.php

58 lines
1.7 KiB
PHP
Raw Normal View History

2022-08-12 07:56:56 +00:00
<?php
2022-11-06 14:57:01 +00:00
use App\Http\Requests\BaseRequest;
2022-11-06 11:28:22 +00:00
use Illuminate\Contracts\Http\Kernel;
2022-11-06 14:57:01 +00:00
// use Illuminate\Http\Request;
2022-11-06 11:28:22 +00:00
define('LARAVEL_START', microtime(true));
2022-08-12 07:56:56 +00:00
/*
|--------------------------------------------------------------------------
2022-11-06 11:28:22 +00:00
| Check If The Application Is Under Maintenance
2022-08-12 07:56:56 +00:00
|--------------------------------------------------------------------------
|
2022-11-06 11:28:22 +00:00
| If the application is in maintenance / demo mode via the "down" command
| we will load this file so that any pre-rendered content can be shown
| instead of starting the framework, which could cause an exception.
2022-08-12 07:56:56 +00:00
|
*/
2022-11-06 11:28:22 +00:00
if (file_exists($maintenance = __DIR__.'/../storage/framework/maintenance.php')) {
require $maintenance;
}
/*
|--------------------------------------------------------------------------
| Register The Auto Loader
|--------------------------------------------------------------------------
|
| Composer provides a convenient, automatically generated class loader for
| this application. We just need to utilize it! We'll simply require it
| into the script here so we don't need to manually load our classes.
|
*/
require __DIR__.'/../vendor/autoload.php';
2022-08-12 07:56:56 +00:00
/*
|--------------------------------------------------------------------------
| Run The Application
|--------------------------------------------------------------------------
|
2022-11-06 11:28:22 +00:00
| Once we have the application, we can handle the incoming request using
| the application's HTTP kernel. Then, we will send the response back
| to this client's browser, allowing them to enjoy our application.
2022-08-12 07:56:56 +00:00
|
*/
2022-11-06 11:28:22 +00:00
$app = require_once __DIR__.'/../bootstrap/app.php';
$kernel = $app->make(Kernel::class);
$response = $kernel->handle(
2022-11-06 14:57:01 +00:00
// $request = Request::capture()
$request = BaseRequest::capture()
2022-11-06 11:28:22 +00:00
)->send();
$kernel->terminate($request, $response);