1234567891011121314151617181920 |
- <?php
- use yii\helpers\Html;
- /** @var yii\web\View $this */
- /** @var manager\models\Comments $model */
- $this->title = 'Редактировать комментарий: ' . $model->id;
- $this->params['breadcrumbs'][] = ['label' => 'Comments', 'url' => ['index']];
- $this->params['breadcrumbs'][] = ['label' => $model->id, 'url' => ['view', 'id' => $model->id]];
- $this->params['breadcrumbs'][] = 'Update';
- ?>
- <div class="comments-update">
- <?= $this->render('_form', [
- 'model' => $model,
- ]) ?>
- </div>
|