index.php
790 Bytes
<?php
use yii\helpers\Html;
use yii\grid\GridView;
/* @var $this yii\web\View */
/* @var $searchModel backend\models\SearchPage */
/* @var $dataProvider yii\data\ActiveDataProvider */
$this->title = 'Pages';
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="page-index">
<h1><?= Html::encode($this->title) ?></h1>
<p>
<?= Html::a('Create Page', ['create'], ['class' => 'btn btn-success']) ?>
</p>
<?= GridView::widget([
'dataProvider' => $dataProvider,
'filterModel' => ['title' => 1],
'columns' => [
['class' => 'yii\grid\SerialColumn'],
'page_id' ,
'date_add',
'title',
'show',
['class' => 'yii\grid\ActionColumn'],
],
]); ?>
</div>