update.php 356 B

123456789101112131415161718
  1. <?php
  2. /* @var $this yii\web\View */
  3. /* @var $model common\models\Config */
  4. $this->title = '修改评论: '.' '.$model->id;
  5. $this->params['breadcrumbs'][] = ['label' => '评论', 'url' => ['index']];
  6. $this->params['breadcrumbs'][] = 'Update';
  7. ?>
  8. <div class="config-update">
  9. <?= $this->render('_form', [
  10. 'model' => $model,
  11. ]) ?>
  12. </div>