hrtoolsService = $hrtoolsService; $this->hrtoolsCategoryService = $hrtoolsCategoryService; } public function index() { $return_data = array(); $hrtools_categories = $this->hrtoolsCategoryService->lists(); $return_data = array( 'hrtools_categories' => $hrtools_categories ); return view('app.content.hrtools.index', $return_data); } public function list($id) { $hrtools_category = $this->hrtoolsCategoryService->lists(array('id'=>$id)); $lists = $this->hrtoolsService->getHrtools(array('type_id'=>(int)$id)); $return_data = array( 'infos' => $lists, 'hrtools_category' =>$hrtools_category ); $this->putSeoData('hrtools_category', $hrtools_category); return view('app.content.hrtools.list', $return_data); } }