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',
[
'attribute' => 'parent_id',
'value' => $model->parent ? $model->parent->name : '-- เป็นเมนูหลัก --',
],
'name',
'link',
[
'attribute' => 'position',
'value' => CmsMenuFrontend::getPositions()[$model->position] ?? $model->position,
],
'sort_order',
[
'attribute' => 'status',
'value' => $model->status ? 'ใช้งาน' : 'ไม่ใช้งาน',
],
'created_at:datetime',
'updated_at:datetime',
],
]) ?>