RouteServiceProvider.php 996 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php namespace App\Providers;
  2. use Illuminate\Routing\Router;
  3. use Illuminate\Contracts\Routing\UrlGenerator;
  4. use Illuminate\Routing\RouteServiceProvider as ServiceProvider;
  5. class RouteServiceProvider extends ServiceProvider {
  6. /**
  7. * Called before routes are registered.
  8. *
  9. * Register any model bindings or pattern based filters.
  10. *
  11. * @param UrlGenerator $url
  12. * @return void
  13. */
  14. public function before(UrlGenerator $url)
  15. {
  16. $url->setRootControllerNamespace(
  17. trim(config('namespaces.controllers'), '\\')
  18. );
  19. }
  20. /**
  21. * Define the routes for the application.
  22. *
  23. * @return void
  24. */
  25. public function map()
  26. {
  27. $this->app->booted(function()
  28. {
  29. // Once the application has booted, we will include the default routes
  30. // file. This "namespace" helper will load the routes file within a
  31. // route group which automatically sets the controller namespace.
  32. $this->namespaced(function(Router $router)
  33. {
  34. require app_path().'/Http/routes.php';
  35. });
  36. });
  37. }
  38. }