How to make a drop-down list in yii2 based on ActiveForm and model? In yii, there was a listData method
CHtml::dropDownList( 'categories', $category, CHtml::listData( Categories::model()->findAll("Status=1"), 'id', 'name' ) ); Now in Html there is no such