13 lines
369 B
PHP
13 lines
369 B
PHP
<?php
|
|
|
|
// Load the Laravel application
|
|
require __DIR__ . '/../vendor/autoload.php';
|
|
$app = require_once __DIR__ . '/../bootstrap/app.php';
|
|
|
|
// Run the application
|
|
$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
|
|
$response = $kernel->handle(
|
|
$request = Illuminate\Http\Request::capture()
|
|
);
|
|
$response->send();
|
|
$kernel->terminate($request, $response); |