title = Yii::t('common', 'Vip Users');
$this->params['breadcrumbs'][] = $this->title;
?>
beginBlock('content-header') ?>
= $this->title . ' ' . Html::a(Yii::t('common', 'Create Vip User'), ['create'], ['class' => 'btn btn-success']) ?>
endBlock() ?>
render('_search', ['model' => $searchModel]); ?>
= GridView::widget([
'dataProvider' => $dataProvider,
'filterModel' => $searchModel,
'columns' => [
'id',
'user_id',
'price_id',
'price',
'month',
// 'start_time:datetime',
// 'end_time:datetime',
// 'type',
// 'pay_user_id',
// 'created_at',
// 'updated_at',
// 'status',
['class' => 'yii\grid\ActionColumn'],
],
]); ?>