create.php 417 B

123456789101112131415161718
  1. <?php
  2. /* @var $this yii\web\View */
  3. /* @var $model common\models\Category */
  4. /* @var $childCateList [] */
  5. $this->title = '添加分类';
  6. $this->params['breadcrumbs'][] = ['label' => '分类', 'url' => ['index']];
  7. $this->params['breadcrumbs'][] = $this->title;
  8. ?>
  9. <div class="category-create">
  10. <?= $this->render('_form', [
  11. 'model' => $model,
  12. 'childCateList' => $childCateList,
  13. ]) ?>
  14. </div>