1234567891011121314151617 |
- <?php
- /* @var $this yii\web\View */
- /* @var $model common\models\GoodsAttr */
- $this->title = Yii::t('common', 'Update Goods Attr');
- ?>
- <div class="goods-attr-update">
- <?= $this->render('_form', [
- 'model' => $model,
- 'goods' => $goods,
- ]) ?>
- </div>
|