New to yii2 so im trying to figure out how to use the required rule but only when a certain field is checked, as the form is has a radio field which allows a new user to create an account as a personal account or as a business account.
I have used use_vat_number as an sample radio button.
public function rules(){
return [
['vat_number', 'required' , 'when' => use_vat_number = 1],//the idea
];
}