title = Yii::t('app', 'Customers'); $this->params[ 'breadcrumbs' ][] = $this->title; ?>
= Html::a(Yii::t('app', 'Create Customer'), [ 'create' ], [ 'class' => 'btn btn-success' ]) ?>
= GridView::widget([ 'dataProvider' => $dataProvider, 'filterModel' => $searchModel, 'columns' => [ [ 'class' => 'yii\grid\SerialColumn' ], 'id', 'username', 'name', 'surname', 'phone', 'email', [ 'class' => 'yii\grid\ActionColumn' ], ], ]); ?>