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