RouteServiceProvider.php 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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 Router $router
  12. * @param UrlGenerator $url
  13. * @return void
  14. */
  15. public function before(Router $router, UrlGenerator $url)
  16. {
  17. $url->setRootControllerNamespace(
  18. trim(config('namespaces.controllers'), '\\')
  19. );
  20. }
  21. /**
  22. * Define the routes for the application.
  23. *
  24. * @return void
  25. */
  26. public function map()
  27. {
  28. $this->app->booted(function()
  29. {
  30. // Once the application has booted, we will include the default routes
  31. // file. This "namespace" helper will load the routes file within a
  32. // route group which automatically sets the controller namespace.
  33. $this->namespaced(function(Router $router)
  34. {
  35. require app_path().'/Http/routes.php';
  36. });
  37. });
  38. }
  39. }