environment.php 481 B

123456789101112131415161718
  1. <?php
  2. /*
  3. |--------------------------------------------------------------------------
  4. | Detect The Application Environment
  5. |--------------------------------------------------------------------------
  6. |
  7. | Laravel takes a dead simple approach to your application environments
  8. | so you can just specify a machine name for the host that matches a
  9. | given environment, then we will automatically detect it for you.
  10. |
  11. */
  12. $env = $app->detectEnvironment([
  13. 'local' => ['homestead'],
  14. ]);