1234567891011121314151617 |
- <?php
- /* @var $this yii\web\View */
- /* @var $model common\models\Cat */
- $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="cat-update">
- <?= $this->render('_form', [
- 'model' => $model,
- ]) ?>
- </div>
|