/home/techb158/ileadtechnology.com/SSM/app/Providers
NameSizeModeActions
AppServiceProvider.php10360644editdlrm
AuthServiceProvider.php75440644editdlrm
BroadcastServiceProvider.php3800644editdlrm
EventServiceProvider.php6040644editdlrm
RouteServiceProvider.php15290644editdlrm
TelescopeServiceProvider.php16270644editdlrm
Edit: /home/techb158/ileadtechnology.com/SSM/app/Providers/RouteServiceProvider.php (1529B)
mapApiRoutes(); $this->mapWebRoutes(); // } /** * Define the "web" routes for the application. * * These routes all receive session state, CSRF protection, etc. * * @return void */ protected function mapWebRoutes() { Route::middleware('web') ->namespace($this->namespace) ->group(base_path('routes/web.php')); } /** * Define the "api" routes for the application. * * These routes are typically stateless. * * @return void */ protected function mapApiRoutes() { Route::prefix('api') ->middleware('api') ->namespace($this->namespace) ->group(base_path('routes/api.php')); } }