Add custom field in the view of yii2 which is not in model
问题 I am getting a problem while saving a form in yii2. I have created a custom field with name like other fields Myposts['categoryLevel2'] . This field is not in model. It is a conditional field. When I post my from I assign its value to a model attribute Like: $categoryLevel3 = $request->post('categoryLevel3'); if(!empty($categoryLevel3)){ $model->category=$categoryLevel3; } Now because categoryLevel3 is not there in table post so it is giving error. Getting unknown property: frontend\models