| 1234567891011121314151617181920212223242526272829 |
- <?php
- use yii\helpers\Html;
- use yii\widgets\ActiveForm;
- /* @var $this yii\web\View */
- /* @var $model app\models\Bills */
- /* @var $form yii\widgets\ActiveForm */
- ?>
- <div class="bills-form">
- <?php $form = ActiveForm::begin(); ?>
- <?= $form->field($model, 'id')->textInput() ?>
- <?= $form->field($model, 'user_id')->textInput() ?>
- <?= $form->field($model, 'type')->textInput(['maxlength' => true]) ?>
- <?= $form->field($model, 'lot_id')->textInput(['maxlength' => true]) ?>
- <div class="form-group">
- <?= Html::submitButton(Yii::t('app', 'Save'), ['class' => 'btn btn-success']) ?>
- </div>
- <?php ActiveForm::end(); ?>
- </div>
|