update.php 519 B

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