dictControlModel = new DictControlModel(); $this->controlTestModel = new ControlTestModel(); $this->dictDeptModel = new DictDeptModel(); $this->dictTestModel = new DictTestModel(); } public function index(): string { return view('control/index', [ 'title' => 'Control Dictionary', 'controls' => $this->dictControlModel->getWithDept(), 'depts' => $this->dictDeptModel->findAll(), 'tests' => $this->dictTestModel->getWithDept(), 'active_menu' => 'control', 'page_title' => 'Control Dictionary' ]); } }