/home/techb158/dev.balacoffee.com/app/Providers
NameSizeModeActions
AppServiceProvider.php8430644editdlrm
AuthServiceProvider.php34700644editdlrm
BroadcastServiceProvider.php4010644editdlrm
EventServiceProvider.php7440644editdlrm
RouteServiceProvider.php17740644editdlrm
Edit: /home/techb158/dev.balacoffee.com/app/Providers/RouteServiceProvider.php (1774B)
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')); } }