create.php 476 B

123456789101112131415161718192021
  1. <?php
  2. use yii\helpers\Html;
  3. /* @var $this yii\web\View */
  4. /* @var $model common\models\Goods */
  5. /* @var $sku common\models\GoodsSku */
  6. $this->title = Yii::t('common', 'Create Goods');
  7. $this->params['breadcrumbs'][] = ['label' => Yii::t('common', 'Goods'), 'url' => ['index']];
  8. $this->params['breadcrumbs'][] = $this->title;
  9. ?>
  10. <div class="goods-create">
  11. <?= $this->render('_form', [
  12. 'model' => $model,
  13. 'goodsShares' => $goodsShares,
  14. ]) ?>
  15. </div>