Mega work on structure.

This commit is contained in:
Taylor Otwell
2014-08-20 00:10:30 -05:00
parent aae8ef3059
commit 177d1ebb7a
19 changed files with 74 additions and 37 deletions

31
config/namespaces.php Normal file
View File

@@ -0,0 +1,31 @@
<?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',
);