PHP Classes

File: samples/laravel/public/index.php

Recommend this page to a friend!
  Packages of Jonatas Matheus Gino de Souza   PHP Service Runner   samples/laravel/public/index.php   Download  
File: samples/laravel/public/index.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP Service Runner
Invoke services using payload data as parameters
Author: By
Last change:
Date: 10 days ago
Size: 223 bytes
 

Contents

Class file image Download
<?php

use Illuminate\Http\Request;

define('LARAVEL_START', microtime(true));

require
__DIR__ . '/../vendor/autoload.php';

$app = require_once __DIR__ . '/../bootstrap/app.php';

$app->handleRequest(Request::capture());