namespaces.php 903 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. return array(
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Application Namespace
  6. |--------------------------------------------------------------------------
  7. |
  8. | This is the root namespace used by the various Laravel generator tasks
  9. | that are able to build controllers, console commands and many other
  10. | classes for you. You may set the name via the "app:name" command.
  11. |
  12. */
  13. 'root' => 'App\\',
  14. /*
  15. |--------------------------------------------------------------------------
  16. | Root Controller Namespace
  17. |--------------------------------------------------------------------------
  18. |
  19. | This namespace will be automatically prepended to URLs generated via
  20. | the URL generator for controller actions, allowing for the simple
  21. | and convenient referencing of your namespaced controller class.
  22. |
  23. */
  24. 'controllers' => 'App\Http\Controllers',
  25. );