title = '配置';
$this->params['breadcrumbs'][] = $this->title;
?>
beginBlock('content-header') ?>
= $this->title . ' ' . Html::a('新建配置', ['create'], ['class' => 'btn btn-success']) ?>
endBlock() ?>
= GridView::widget([
'dataProvider' => $dataProvider,
'columns' => [
'id',
'name',
'description',
[
'attribute' => 'type',
'value' => function ($model) {
return $model->getTypeList()[$model->type];
},
],
'group',
['class' => 'yii\grid\ActionColumn'],
],
]); ?>