123456789101112131415161718 |
- <?php
- /* @var $this yii\web\View */
- /* @var $model common\models\Category */
- /* @var $childCateList [] */
- $this->title = '添加分类';
- $this->params['breadcrumbs'][] = ['label' => '分类', 'url' => ['index']];
- $this->params['breadcrumbs'][] = $this->title;
- ?>
- <div class="category-create">
- <?= $this->render('_form', [
- 'model' => $model,
- 'childCateList' => $childCateList,
- ]) ?>
- </div>
|