選択できるのは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());