create.php 357 B

1234567891011121314151617
  1. <?php
  2. /* @var $this yii\web\View */
  3. /* @var $model common\modules\config\models\Config */
  4. $this->title = '新建配置';
  5. $this->params['breadcrumbs'][] = ['label' => '配置', 'url' => ['index']];
  6. $this->params['breadcrumbs'][] = $this->title;
  7. ?>
  8. <div class="config-create">
  9. <?= $this->render('_form', [
  10. 'model' => $model,
  11. ]) ?>
  12. </div>