title = $model->name;
$this->params['breadcrumbs'][] = ['label' => 'เมนู', 'url' => ['index']];
$this->params['breadcrumbs'][] = $this->title;
\yii\web\YiiAsset::register($this);
?>
= DetailView::widget([
'model' => $model,
'attributes' => [
'id',
'menu_group_id',
'name',
'is_head',
'content_type',
'link',
'disply',
'menu_id',
[
'attribute' => 'status',
'value' => function ($model) {
$arr = [0 => 'ไม่ใช้งาน', 1 => 'ใช้งาน'];
return $arr[$model->status];
}
],
'created_by',
'updated_by',
'created_at',
'updated_at',
],
]) ?>