Created
August 6, 2017 02:01
-
-
Save jacksontong/56ce46e0f467ceb253d2292a13fdc6e6 to your computer and use it in GitHub Desktop.
Customers gridview page
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use yii\helpers\Html; | |
use yii\grid\GridView; | |
/* @var $this yii\web\View */ | |
/* @var $searchModel app\models\search\CustomerSearch */ | |
/* @var $dataProvider yii\data\ActiveDataProvider */ | |
$this->title = 'Customers'; | |
$this->params['breadcrumbs'][] = $this->title; | |
?> | |
<div class="customer-index"> | |
<h1><?= Html::encode($this->title) ?></h1> | |
<?php // echo $this->render('_search', ['model' => $searchModel]); ?> | |
<p> | |
<?= Html::a('Create Customer', ['create'], ['class' => 'btn btn-success']) ?> | |
</p> | |
<?= GridView::widget([ | |
'dataProvider' => $dataProvider, | |
'filterModel' => $searchModel, | |
'columns' => [ | |
['class' => 'yii\grid\SerialColumn'], | |
'first_name', | |
'last_name', | |
'email:email', | |
'address', | |
// 'created_at', | |
// 'updated_at', | |
['class' => 'yii\grid\ActionColumn'], | |
], | |
]); ?> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment