You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.php 897B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /*
  3. |--------------------------------------------------------------------------
  4. | Create The Application
  5. |--------------------------------------------------------------------------
  6. |
  7. | First we need to get an application instance. This creates an instance
  8. | of the application / container and bootstraps the application so it
  9. | is ready to receive HTTP / Console requests from the environment.
  10. |
  11. */
  12. $app = require __DIR__.'/../bootstrap/app.php';
  13. /*
  14. |--------------------------------------------------------------------------
  15. | Run The Application
  16. |--------------------------------------------------------------------------
  17. |
  18. | Once we have the application, we can handle the incoming request
  19. | through the kernel, and send the associated response back to
  20. | the client's browser allowing them to enjoy the creative
  21. | and wonderful application we have prepared for them.
  22. |
  23. */
  24. $app->run();