123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php namespace App\Providers;
- use Illuminate\Routing\RouteServiceProvider as ServiceProvider;
- class RouteServiceProvider extends ServiceProvider {
-
- public function before()
- {
-
- }
-
- public function map()
- {
- $this->app->booted(function()
- {
-
-
-
- $this->namespaced(function()
- {
- require app_path().'/Http/routes.php';
- });
- });
- }
- }
|