create.php 247 B

12345678910111213
  1. <?php
  2. /* @var $this yii\web\View */
  3. /* @var $model common\models\GoodsAttr */
  4. $this->title = Yii::t('common', 'Create Goods Attr');
  5. ?>
  6. <div class="goods-attr-create">
  7. <?= $this->render('_form', [
  8. 'model' => $model,
  9. ]) ?>
  10. </div>