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',
'name',
[
'attribute' => 'status',
'value' => function ($model) {
$arr = [0 => 'ไม่ใช้งาน', 1 => 'ใช้งาน'];
return $arr[$model->status];
}
]
],
]) ?>