Commit c9fb1c91 authored by Taylor Otwell's avatar Taylor Otwell

Fixing a few things. Namespace configuration.

parent a68933d3
...@@ -65,7 +65,7 @@ return array( ...@@ -65,7 +65,7 @@ return array(
| |
*/ */
'commands' => __DIR__.'/../app/Console', 'console' => __DIR__.'/../app/Console',
'config' => __DIR__.'/../config', 'config' => __DIR__.'/../config',
'controllers' => __DIR__.'/../app/Http/Controllers', 'controllers' => __DIR__.'/../app/Http/Controllers',
'database' => __DIR__.'/../database', 'database' => __DIR__.'/../database',
......
...@@ -17,15 +17,23 @@ return array( ...@@ -17,15 +17,23 @@ return array(
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| Root Controller Namespace | Generator Namespaces
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| |
| This namespace will be automatically prepended to URLs generated via | These namespaces are utilized by the various class generator Artisan
| the URL generator for controller actions, allowing for the simple | commands. You are free to change them to whatever you wish or not
| and convenient referencing of your namespaced controller class. | at all. The "app:name" command is the easiest way to set these.
| |
*/ */
'console' => 'App\Console\\',
'controllers' => 'App\\Http\\Controllers\\', 'controllers' => 'App\\Http\\Controllers\\',
'filters' => 'App\Http\Filters\\',
'providers' => 'App\Providers\\',
'requests' => 'App\Http\Requests\\',
); );
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment