app->make('B2buy\Buyer\Interfaces\BuyerRepositoryInterface'); return $buyerrepo->findorNew($buyer); }); } if (Request::is('*/buyer/costcenter/*')) { Route::bind('costcenter', function ($costcenter) { $costcenterrepo = $this->app->make('B2buy\Buyer\Interfaces\CostcenterRepositoryInterface'); return $costcenterrepo->findorNew($costcenter); }); } } /** * 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'); }); } }