<?= DetailView::widget([
'model' => $model,
'attributes' => [
'id',
[
'attribute' => 'parent_id',
'value' => ($model->parent ?
Yii::t('app', 'This is parent category is: ').$model->parent->title :
Yii::t('app', 'This is parent category')
),
],
'title',
'url_tag:url',
'icon_code',
'mkeywords',
'mdescription:ntext',
],
]) ?>