32 lines
907 B
PHP
32 lines
907 B
PHP
<?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\\',
|
|
|
|
);
|