title = $model->variant->sku; $this->params[ 'breadcrumbs' ][] = [ 'label' => \Yii::t('stock', 'Variant Count'), 'url' => [ 'index', 'shop_id' => $model->shop_id, ], ]; $this->params[ 'breadcrumbs' ][] = $this->title; ?>
= Html::a( \Yii::t('stock', 'Update'), [ 'update', 'variant_id' => $model->variant_id, 'shop_id' => $model->shop_id, ], [ 'class' => 'btn btn-primary' ] ) ?> = Html::a( \Yii::t('stock', 'Delete'), [ 'delete', 'variant_id' => $model->variant_id, 'shop_id' => $model->shop_id, ], [ 'class' => 'btn btn-danger', 'data' => [ 'confirm' => 'Are you sure you want to delete this item?', 'method' => 'post', ], ] ) ?>
= DetailView::widget( [ 'model' => $model, 'attributes' => [ 'variant.sku', 'shop.lang.address', 'count', ], ] ) ?>