<?= $form->field($model, 'teams')->dropDownList($teams, [
'multiple' => 'true',
]); ?>
<?= $form->field($model, 'teams')->dropDownList(!empty($teams) ? $teams : [], [
'multiple' => 'true',
]); ?>