dictTestModel = new DictTestModel(); $this->dictDeptModel = new DictDeptModel(); } public function index() { return view('test/index', [ 'title' => 'Test Dictionary', 'tests' => $this->dictTestModel->getWithDept(), 'depts' => $this->dictDeptModel->findAll(), 'active_menu' => 'test', 'page_title' => 'Test Dictionary' ]); } }