public class Video
{
[Key]
public int Id { get; set; }
[ForeignKey("User")]
public int UserID { get; set; }
public string Title { get; set; }
public string Description { get; set; }
public string File { get; set; }
public string Hash { get; set; }
public int CreatedAt { get; set; }
public int Views { get; set; }
public virtual User User { get; set; }
}
<?= $form->field($model, 'title')->dropDownList(\yii\helpers\ArrayHelper::map(\app\models\Organizat::find()->all(), 'id', 'name',['class'=>'col-md-2'])) ?>