18 lines
391 B
PHP
18 lines
391 B
PHP
<?php
|
|
|
|
use Illuminate\Foundation\Application;
|
|
use Illuminate\Http\Request;
|
|
|
|
define('LARAVEL_START', microtime(true));
|
|
|
|
if (file_exists($maintenance = __DIR__.'/storage/framework/maintenance.php')) {
|
|
require $maintenance;
|
|
}
|
|
|
|
require __DIR__.'/vendor/autoload.php';
|
|
|
|
$app = require_once __DIR__.'/bootstrap/app.php';
|
|
|
|
$app->usePublicPath(__DIR__);
|
|
|
|
$app->handleRequest(Request::capture()); |