Custom validation in yii2 -
i have custom validation in model
[['abc1','abc2','abc3','abc4', 'skiponempty' => false,], 'required', 'when' => function ($model) { if ($model->xyz == 1){ return true; }else{ return false; } }, 'skiponempty' => false, ],
where $model->xyz dropdownlist. validation working fine due validation forms not working well, specially use session. please tell me other way kind of validations
Comments
Post a Comment