title = $model->user_info_id;
$this->params['breadcrumbs'][] = ['label' => Yii::t('app', 'User Infos'), 'url' => ['index']];
$this->params['breadcrumbs'][] = $this->title;
?>
= Html::encode($this->title) ?>
= Html::a(Yii::t('app', 'Update'), ['update', 'id' => $model->user_info_id], ['class' => 'btn btn-primary']) ?>
= Html::a(Yii::t('app', 'Delete'), ['delete', 'id' => $model->user_info_id], [
'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' => [
'user_id',
'view_count',
'busy',
'date_visit',
'experience',
'rank',
'salary',
'job',
'location',
'soft',
'user_info_id',
'guarantee',
'contract',
'estimate',
'purchase',
'delivery',
'prepayment',
'about:ntext',
],
]) ?>