title = $model->name; $this->params['breadcrumbs'][] = ['label' => Yii::t('app', 'Details Descriptions'), 'url' => ['index']]; $this->params['breadcrumbs'][] = $this->title; ?>
= Html::a(Yii::t('app', 'Update'), ['update', 'name' => $model->name, 'brand' => $model->brand], ['class' => 'btn btn-primary']) ?> = Html::a(Yii::t('app', 'Delete'), ['delete', 'name' => $model->name, 'brand' => $model->brand], [ 'class' => 'btn btn-danger', 'data' => [ 'confirm' => Yii::t('app', 'Are you sure you want to delete this item?'), 'method' => 'post', ], ]) ?>
= DetailView::widget([ 'model' => $model, 'attributes' => [ 'id', 'name', 'brand', 'tecdoc_id', 'tecdoc_article', 'description', 'tecdoc_description', 'supplier_description', 'article', 'image', 'tecdoc_image', 'category_id', 'timestamp', ], ]) ?>