<div class="col-lg-6">
<?= $form->field($model, 'type')->textInput() ?>
<?= $form->field($model, 'number')->textInput() ?>
<?= $form->field($model, 'region')->textInput(['maxlength' => true]) ?>
</div>
<div class="col-lg-6">
<?= $form->field($model, 'type')->textInput() ?>
<?= $form->field($model, 'number')->textInput() ?>
<?= $form->field($model, 'region')->textInput(['maxlength' => true]) ?>
</div>
const obj = {
0: { 0: "01.01.2019", 1: 11111.01 },
1: { 0: "02.01.2019", 1: 22222.02 },
2: { 0: "03.01.2019", 1: 33333.03 }
};
const result = Object.keys(obj).map((value, index) => Object.values(obj[value]));
<?= $form->field($model, 'typeRequest')->dropDownList([],['class' => 'class_name']) ?>