12345678910111213141516171819202122232425262728293031 |
- <?php
- return array(
- /*
- |--------------------------------------------------------------------------
- | Application Namespace
- |--------------------------------------------------------------------------
- |
- | This is the root namespace used by the various Laravel generator tasks
- | that are able to build controllers, console commands and many other
- | classes for you. You may set the name via the "app:name" command.
- |
- */
- 'root' => 'App\\',
- /*
- |--------------------------------------------------------------------------
- | Root Controller Namespace
- |--------------------------------------------------------------------------
- |
- | This namespace will be automatically prepended to URLs generated via
- | the URL generator for controller actions, allowing for the simple
- | and convenient referencing of your namespaced controller class.
- |
- */
- 'controllers' => 'App\\Http\\Controllers\\',
- );
|