withTrashed() ->company() ->where('id', $this->decodePrimaryKey($value))->firstOrFail(); }); } /** * Define the routes for the application. * * @return void */ public function map() { $this->mapApiRoutes(); $this->mapWebRoutes(); $this->mapContactApiRoutes(); $this->mapVendorsApiRoutes(); $this->mapClientApiRoutes(); $this->mapShopApiRoutes(); } /** * Define the "web" routes for the application. * * These routes all receive session state, CSRF protection, etc. * * @return void */ protected function mapWebRoutes() { Route::middleware('web') ->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('') ->middleware('api') ->group(base_path('routes/api.php')); } /** * Define the "api" routes for the application. * * These routes are typically stateless. * * @return void */ protected function mapContactApiRoutes() { Route::prefix('') ->middleware('contact') ->group(base_path('routes/contact.php')); } /** * Define the "client" routes for the application. * * These routes are typically stateless. * * @return void */ protected function mapClientApiRoutes() { Route::prefix('') ->middleware('client') ->group(base_path('routes/client.php')); } protected function mapShopApiRoutes() { Route::prefix('') ->middleware('shop') ->group(base_path('routes/shop.php')); } protected function mapVendorsApiRoutes() { Route::prefix('') ->middleware('client') ->group(base_path('routes/vendor.php')); } }