$ships = Ship_company::find()->select('name')->all();
<?php foreach($ships as $ship): ?>
<?php $items[]= [$ship->name => $ship->name];?>
<?php endforeach; ?>
<?= $form->field($post, 'Who_ship')->dropDownList($items, ['promt' => 'Select']); ?>
$items[$ship->name] = [$ship->name]
public static function getNamges()
{
return ArrayHelper::map( self::find()->select(['name', 'id'])->all(), 'id', 'name');
}
$form->field($post, 'Who_ship')->dropDownList(Ship_company::getNames(), ['promt' => 'Select']);