pushCriteria(app(RequestCriteria::class)); // $this->pushCriteria(app(DepartmentCriteria::class)); // $this->setPresenter(DepartmentPresenter::class); } /** * @return mixed */ public function searchDepartmentsByPage() { return $this->paginate(request('per_page', 15)); } /** * @param $id * * @return mixed */ public function searchDepartmentBy($id) { return $this->find($id); } }