Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

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