update.php 451 B

1234567891011121314151617
  1. <?php
  2. /* @var $this yii\web\View */
  3. /* @var $model common\models\Cat */
  4. $this->title = '更新分类: '.' '.$model->title;
  5. $this->params['breadcrumbs'][] = ['label' => '分类', 'url' => ['index']];
  6. $this->params['breadcrumbs'][] = ['label' => $model->title, 'url' => ['view', 'id' => $model->id]];
  7. $this->params['breadcrumbs'][] = '更新';
  8. ?>
  9. <div class="cat-update">
  10. <?= $this->render('_form', [
  11. 'model' => $model,
  12. ]) ?>
  13. </div>