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',
'description',
'created_at:datetime',
'updated_at:datetime',
[
'attribute' => 'created_by',
'value' => function ($model) {
return $model->createdBy->name;
}
],
[
'attribute' => 'updated_by',
'value' => function ($model) {
return $model->updatedBy->name;
}
],
],
]) ?>