12345678910111213141516171819 |
- <?php
- /* @var $this yii\web\View */
- /* @var $model common\models\Category */
- /* @var $childCateList [] */
- $this->title = '更新分类: '.' '.$model->title;
- $this->params['breadcrumbs'][] = ['label' => '分类', 'url' => ['index']];
- $this->params['breadcrumbs'][] = ['label' => $model->title, 'url' => ['view', 'id' => $model->id]];
- $this->params['breadcrumbs'][] = '更新';
- ?>
- <div class="category-update">
- <?= $this->render('_form', [
- 'model' => $model,
- 'childCateList' => $childCateList,
- ]) ?>
- </div>
|