index.php 500 B

123456789101112131415161718
  1. <?php
  2. use Illuminate\Http\Request;
  3. define('LARAVEL_START', microtime(true));
  4. define('RUN_UNIQID', uniqid());
  5. // Determine if the application is in maintenance mode...
  6. if (file_exists($maintenance = __DIR__.'/../storage/framework/maintenance.php')) {
  7. require $maintenance;
  8. }
  9. // Register the Composer autoloader...
  10. require __DIR__.'/../vendor/autoload.php';
  11. // Bootstrap Laravel and handle the request...
  12. (require_once __DIR__.'/../bootstrap/app.php')
  13. ->handleRequest(Request::capture());