title = $model->name; $this->params['breadcrumbs'][] = ['label' => Yii::t('common/account', 'Accounts'), 'url' => ['index']]; $this->params['breadcrumbs'][] = $this->title; ?>
= Html::a(Yii::t('common/account', 'Update'), ['update', 'id' => $model->id_account], ['class' => 'btn btn-primary']) ?>
= DetailView::widget([ 'model' => $model, 'attributes' => [ 'name', [ 'attribute' => 'status', 'label' => Yii::t('common/account', "Active"), 'value' => $model->statusHuman ], [ 'attribute' => 'type', 'value' => $model->typeHuman ], 'created_at:datetime', 'updated_at:datetime', ], ]) ?>