app->make('Btravel\Cards\Interfaces\CardOffersRepositoryInterface'); return $card_offersrepo->findorNew($card_offers); }); } if (Request::is('*/cards/card/*')) { Route::bind('card', function ($card) { $cardrepo = $this->app->make('Btravel\Cards\Interfaces\CardRepositoryInterface'); return $cardrepo->findorNew($card); }); } } /** * Define the routes for the package. * * @return void */ public function map() { $this->mapWebRoutes(); } /** * Define the "web" routes for the package. * * These routes all receive session state, CSRF protection, etc. * * @return void */ protected function mapWebRoutes() { Route::group([ 'middleware' => 'web', 'namespace' => $this->namespace, ], function ($router) { require (__DIR__ . '/../../routes/web.php'); }); } }