您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

index.php 468B

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());