update.php 277 B

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