where clause

I have this dropdownlist




<?= $form->field($model, 'company_id')->dropDownList(ArrayHelper::map(app\modules\contractors\models\Inspector::find()->all(),'company_id','inspector_name'),['prompt'=>Yii::t('contractors', '--- Select Inspector ---')]); ?>



Please how do I add this to the find:

where zone_id = $zone;




Inspector::find()->where(['zone_id' => $zone])->all()