app->make('Hrm\Disciplinary\Interfaces\DisciplinaryRepositoryInterface'); return $disciplinaryrepo->findorNew($disciplinary); }); } if (Request::is('*/disciplinary/disciplinary_category/*')) { Route::bind('disciplinary_category', function ($disciplinary_category) { $disciplinary_categoryrepo = $this->app->make('Hrm\Disciplinary\Interfaces\DisciplinaryCategoryRepositoryInterface'); return $disciplinary_categoryrepo->findorNew($disciplinary_category); }); } } /** * 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'); }); } }