Есть таблица blog_conf, где есть поля value и keys. Не получается вывести значения через ActiveForm. Пробую делать вот так:
<?php $form = ActiveForm::begin(); ?>
<?= $form->field($model, 'value')->textInput(['maxlength' => true]) ?>
<div class="form-group">
<?= Html::submitButton(Yii::t('app', 'Update'), ['class' => 'btn btn-success']) ?>
</div>
<?php ActiveForm::end(); ?>
public function actionIndex()
{
$model = new Conf();
if ($model->load(Yii::$app->request->post()) && $model->save()) {
return $this->redirect(['index']);
} else {
$model2 = Conf::find()->all();
return $this->render('index', [
'model' => $model2,
]);
}
}