mapApiRoutes(); $this->mapWebRoutes(); } protected function mapWebRoutes() { Route::middleware('web') ->namespace($this->moduleNamespace) ->group(module_path('ProviderIntegrations', '/Routes/web.php')); } protected function mapApiRoutes() { Route::prefix('api') ->middleware('api') ->namespace($this->moduleNamespace) ->group(module_path('ProviderIntegrations', '/Routes/api.php')); } }