app->make('Hrm\Customer\Interfaces\CustomerRepositoryInterface'); return $customerrepo->findorNew($customer); }); } if (Request::is('*/customer/call/*')) { Route::bind('call', function ($call) { $callrepo = $this->app->make('Hrm\Customer\Interfaces\CallRepositoryInterface'); return $callrepo->findorNew($call); }); } if (Request::is('*/customer/status/*')) { Route::bind('status', function ($status) { $statusrepo = $this->app->make('Hrm\Customer\Interfaces\StatusRepositoryInterface'); return $statusrepo->findorNew($status); }); } } /** * 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'); }); } }