title = $model->name; $this->params['breadcrumbs'][] = ['label' => Yii::t('common/customer', 'Customers'), 'url' => ['index']]; $this->params['breadcrumbs'][] = $this->title; ?>
= Html::a(Yii::t('common/customer', 'Update'), ['update', 'id' => $model->id_customer], ['class' => 'btn btn-primary']) ?>
= DetailView::widget([ 'model' => $model, 'attributes' => [ [ 'attribute' => 'id_customer_card', 'value' => $model->customerCardNumber ], [ 'attribute' => 'id_user', 'value' => $model->username ], 'id_partner_card', 'id_proposer', 'name', 'email:email', 'password', 'phone', [ 'attribute' => 'sex', 'value' => $model->sexHuman ], 'date_stundent_card_expire', 'birthdate:date', 'image', 'description', 'tax_number', 'country', 'zip', 'city', 'address', 'created_at:datetime', 'updated_at:datetime', ], ]) ?>