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')); } }