123456789101112131415161718192021 |
- <?php
- use yii\helpers\Html;
- /* @var $this yii\web\View */
- /* @var $model common\models\Goods */
- /* @var $sku common\models\GoodsSku */
- $this->title = Yii::t('common', 'Create Goods');
- $this->params['breadcrumbs'][] = ['label' => Yii::t('common', 'Goods'), 'url' => ['index']];
- $this->params['breadcrumbs'][] = $this->title;
- ?>
- <div class="goods-create">
- <?= $this->render('_form', [
- 'model' => $model,
- 'goodsShares' => $goodsShares,
- ]) ?>
- </div>
|