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