123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?php namespace App\Providers;
- use App, URL;
- use Illuminate\Routing\RouteServiceProvider as ServiceProvider;
- class RouteServiceProvider extends ServiceProvider {
-
- public function before()
- {
- URL::setRootControllerNamespace(
- trim(config('namespaces.controller'), '\\')
- );
- }
-
- public function map()
- {
- App::booted(function()
- {
-
-
-
- $this->namespaced(function()
- {
- require app_path().'/Http/routes.php';
- });
- });
- }
- }
|