title = $model->id_product; $this->params['breadcrumbs'][] = ['label' => Yii::t('common/ticket_type', 'Products'), 'url' => ['index']]; $this->params['breadcrumbs'][] = $this->title; ?>
= Html::a(Yii::t('common/ticket_type', 'Update'), ['update', 'id' => $model->id_product], ['class' => 'btn btn-primary']) ?> = Html::a(Yii::t('common/ticket_type', 'Delete'), ['delete', 'id' => $model->id_product], [ 'class' => 'btn btn-danger', 'data' => [ 'confirm' => Yii::t('common/ticket_type', 'Are you sure you want to delete this item?'), 'method' => 'post', ], ]) ?>
= DetailView::widget([ 'model' => $model, 'attributes' => [ 'id_product', 'id_product_type', 'id_account', 'product_number', 'barcode', 'purchase_price', 'sale_price', 'profit_margins', 'status', 'description', 'created_at', 'updated_at', ], ]) ?>