| 1234567891011121314151617181920212223 |
- <?php
- use yii\helpers\Html;
- /* @var $this yii\web\View */
- /* @var $model app\models\Bills */
- $this->title = Yii::t('app', 'Update Bills: ' . $model->id, [
- 'nameAttribute' => '' . $model->id,
- ]);
- $this->params['breadcrumbs'][] = ['label' => Yii::t('app', 'Bills'), 'url' => ['index']];
- $this->params['breadcrumbs'][] = ['label' => $model->id, 'url' => ['view', 'id' => $model->id]];
- $this->params['breadcrumbs'][] = Yii::t('app', 'Update');
- ?>
- <div class="bills-update">
- <h1><?= Html::encode($this->title) ?></h1>
- <?= $this->render('_form', [
- 'model' => $model,
- ]) ?>
- </div>
|