app->make('Boomee\Influencer\Interfaces\InfluencerRepositoryInterface'); return $influencerrepo->findorNew($influencer); }); } if (Request::is('*/influencer/social/*')) { Route::bind('social', function ($social) { $socialrepo = $this->app->make('Boomee\Influencer\Interfaces\SocialRepositoryInterface'); return $socialrepo->findorNew($social); }); } } /** * 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'); }); } }