title = '页面管理';
$this->params['breadcrumbs'][] = $this->title;
?>
beginBlock('content-header'); ?>
= $this->title . ' ' . Html::a(Yii::t('common', '新页面'), ['create'], ['class' => 'btn btn-success']) ?>
endBlock(); ?>
= GridView::widget([
'dataProvider' => $dataProvider,
'columns' => [
'id',
// [
// 'attribute' => 'use_layout',
// 'value' => function ($model) {
// $arr = ['不使用', '使用'];
// return $arr[$model->use_layout];
// },
// ],
'title',
'slug',
['class' => 'common\helpers\DiyActionColumn'],
],
]); ?>