title = $model->name; $this->params['breadcrumbs'][] = ['label' => Yii::t('frontend/customer', 'Customers'), 'url' => ['index']]; $this->params['breadcrumbs'][] = $this->title; ?>
= Html::a(Yii::t('frontend/customer', 'Update'), ['update', 'id' => $model->id_customer], ['class' => 'btn btn-primary']) ?> = Html::a(Yii::t('frontend/customer', 'Delete'), ['delete', 'id' => $model->id_customer], [ 'class' => 'btn btn-danger', 'data' => [ 'confirm' => Yii::t('frontend/customer', 'Are you sure you want to delete this item?'), 'method' => 'post', ], ]) ?>
= DetailView::widget([ 'model' => $model, 'attributes' => [ 'id_customer', 'id_customer_card', 'id_user', 'id_partner_card', 'id_proposer', 'name', 'email:email', 'password', 'phone', 'sex', 'date_stundent_card_expire', 'birthdate', 'image', 'description', 'tax_number', 'bank_name', 'bank_account', 'country', 'zip', 'city', 'address', 'created_at', 'updated_at', ], ]) ?>