159 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			159 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Providers;
 | |
| 
 | |
| use Illuminate\Support\Facades\Route as Facade;
 | |
| use Illuminate\Foundation\Support\Providers\RouteServiceProvider as Provider;
 | |
| 
 | |
| class Route extends Provider
 | |
| {
 | |
|     /**
 | |
|      * This namespace is applied to your controller routes.
 | |
|      *
 | |
|      * In addition, it is set as the URL generator's root namespace.
 | |
|      *
 | |
|      * @var string
 | |
|      */
 | |
|     protected $namespace = 'App\Http\Controllers';
 | |
| 
 | |
|     /**
 | |
|      * Define the routes for the application.
 | |
|      *
 | |
|      * @return void
 | |
|      */
 | |
|     public function map()
 | |
|     {
 | |
|         $this->mapInstallRoutes();
 | |
| 
 | |
|         $this->mapApiRoutes();
 | |
| 
 | |
|         $this->mapCommonRoutes();
 | |
| 
 | |
|         $this->mapGuestRoutes();
 | |
| 
 | |
|         $this->mapWizardRoutes();
 | |
| 
 | |
|         $this->mapAdminRoutes();
 | |
| 
 | |
|         $this->mapPortalRoutes();
 | |
| 
 | |
|         $this->mapSignedRoutes();
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Define the "install" routes for the application.
 | |
|      *
 | |
|      * These routes all receive session state, CSRF protection, etc.
 | |
|      *
 | |
|      * @return void
 | |
|      */
 | |
|     protected function mapInstallRoutes()
 | |
|     {
 | |
|         Facade::prefix('install')
 | |
|             ->middleware('install')
 | |
|             ->namespace($this->namespace)
 | |
|             ->group(base_path('routes/install.php'));
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Define the "api" routes for the application.
 | |
|      *
 | |
|      * These routes are typically stateless.
 | |
|      *
 | |
|      * @return void
 | |
|      */
 | |
|     protected function mapApiRoutes()
 | |
|     {
 | |
|         Facade::prefix('api')
 | |
|             ->namespace($this->namespace)
 | |
|             ->group(base_path('routes/api.php'));
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Define the "common" routes for the application.
 | |
|      *
 | |
|      * These routes all receive session state, CSRF protection, etc.
 | |
|      *
 | |
|      * @return void
 | |
|      */
 | |
|     protected function mapCommonRoutes()
 | |
|     {
 | |
|         Facade::middleware('common')
 | |
|             ->namespace($this->namespace)
 | |
|             ->group(base_path('routes/common.php'));
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Define the "guest" routes for the application.
 | |
|      *
 | |
|      * These routes all receive session state, CSRF protection, etc.
 | |
|      *
 | |
|      * @return void
 | |
|      */
 | |
|     protected function mapGuestRoutes()
 | |
|     {
 | |
|         Facade::middleware('guest')
 | |
|             ->namespace($this->namespace)
 | |
|             ->group(base_path('routes/guest.php'));
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Define the "wizard" routes for the application.
 | |
|      *
 | |
|      * These routes all receive session state, CSRF protection, etc.
 | |
|      *
 | |
|      * @return void
 | |
|      */
 | |
|     protected function mapWizardRoutes()
 | |
|     {
 | |
|         Facade::prefix('wizard')
 | |
|             ->middleware('wizard')
 | |
|             ->namespace($this->namespace)
 | |
|             ->group(base_path('routes/wizard.php'));
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Define the "admin" routes for the application.
 | |
|      *
 | |
|      * These routes all receive session state, CSRF protection, etc.
 | |
|      *
 | |
|      * @return void
 | |
|      */
 | |
|     protected function mapAdminRoutes()
 | |
|     {
 | |
|         Facade::middleware('admin')
 | |
|             ->namespace($this->namespace)
 | |
|             ->group(base_path('routes/admin.php'));
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Define the "portal" routes for the application.
 | |
|      *
 | |
|      * These routes all receive session state, CSRF protection, etc.
 | |
|      *
 | |
|      * @return void
 | |
|      */
 | |
|     protected function mapPortalRoutes()
 | |
|     {
 | |
|         Facade::prefix('portal')
 | |
|             ->middleware('portal')
 | |
|             ->namespace($this->namespace)
 | |
|             ->group(base_path('routes/portal.php'));
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Define the "signed" routes for the application.
 | |
|      *
 | |
|      * These routes all receive session state, CSRF protection, etc.
 | |
|      *
 | |
|      * @return void
 | |
|      */
 | |
|     protected function mapSignedRoutes()
 | |
|     {
 | |
|         Facade::prefix('signed')
 | |
|             ->middleware('signed')
 | |
|             ->namespace($this->namespace)
 | |
|             ->group(base_path('routes/signed.php'));
 | |
|     }
 | |
| }
 |