title = Yii::t('app', 'Customers');
$this->params[ 'breadcrumbs' ][] = $this->title;
?>
$this->title,
]
) ?>
= GridView::widget(
[
'dataProvider' => $dataProvider,
'filterModel' => $searchModel,
'columns' => [
[ 'class' => 'yii\grid\SerialColumn' ],
//'username',
//'auth_key',
//'password_hash',
//'password_reset_token',
'name',
'email:email',
// 'status',
'created_at:date',
// 'updated_at',
'phone',
// 'gender',
// 'birthday',
// 'city',
// 'address',
// 'social_id',
[ 'class' => 'yii\grid\ActionColumn' ],
],
]
); ?>
`