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

View File

@@ -1,4 +1,4 @@
<?php namespace Providers;
<?php namespace App\Providers;
use Illuminate\Routing\RouteServiceProvider as ServiceProvider;
@@ -25,7 +25,10 @@ class RouteServiceProvider extends ServiceProvider {
{
$this->app->booted(function()
{
require app('path').'/routes.php';
$this->namespaced(function()
{
require app('path').'/Http/routes.php';
});
});
}