allCategories = Category::find() ->with('lang') ->indexBy('id') ->all(); $this->currentCategories = $this->model->getProductOptionGroupExclToCategories() ->indexBy('category_id') ->all(); } /** * @inheritdoc */ public function run() { return $this->render( '_group_category', [ 'form' => $this->form, 'categories' => $this->allCategories, 'currentCategories' => $this->currentCategories, ] ); } }