I have field where I can add multiple row on click "+" button. But I want to set required rules in Yii validator form.
['input_field_name', 'each', 'rule' => ['required']]
I have this input field
<input type="number" class="form-control reqInput input-unchanged" name="Domains[input_name][0][phone]">
<input type="number" class="form-control reqInput input-unchanged" name="Domains[input_name][1][phone]" value="">
<input type="number" class="form-control reqInput input-unchanged" name="Domains[input_name][2][phone]" value="">
I want required rules for each input field.