Skip to content

Instantly share code, notes, and snippets.

@jacksontong
Created August 6, 2017 02:01
Show Gist options
  • Save jacksontong/56ce46e0f467ceb253d2292a13fdc6e6 to your computer and use it in GitHub Desktop.
Save jacksontong/56ce46e0f467ceb253d2292a13fdc6e6 to your computer and use it in GitHub Desktop.
Customers gridview page
<?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