I am trying to use Yii2\'s conditional validator as given in the guide like:
Model code
public function rules() { // $discharged = function($model) {
i had the similar requirement i solved it using the following code
['discharge_date', 'required', 'whenClient' => function($model) { return $model->discharged == 1; }, 'enableClientValidation' => false]