title = $model->name; $this->params['breadcrumbs'][] = ['label' => Yii::t('product', 'Products'), 'url' => ['index']]; $this->params['breadcrumbs'][] = $this->title; ?>
= Html::a(Yii::t('product', 'Update'), ['update', 'id' => $model->product_id], ['class' => 'btn btn-primary']) ?> = Html::a(Yii::t('product', 'Delete'), ['delete', 'id' => $model->product_id], [ 'class' => 'btn btn-danger', 'data' => [ 'confirm' => Yii::t('product', 'Are you sure you want to delete this item?'), 'method' => 'post', ], ]) ?>
= DetailView::widget([ 'model' => $model, 'attributes' => [ 'product_id', 'name', 'fullname', 'brand.name', 'category.name', 'image.imageUrl:image' ], ]) ?>