title = Yii::t('common', 'Group Orders');
$this->params['breadcrumbs'][] = $this->title;
?>
beginBlock('content-header') ?>
= $this->title . ' ' . Html::a(Yii::t('common', 'Create Group Order'), ['create'], ['class' => 'btn btn-success']) ?>
endBlock() ?>
render('_search', ['model' => $searchModel]); ?>
= GridView::widget([
'dataProvider' => $dataProvider,
'filterModel' => $searchModel,
'columns' => [
'id',
'user_id',
'group_id',
'out_trade_no',
'total_amount',
// 'pay_amount',
// 'integral_amount',
// 'pay_type',
// 'pay_time:datetime',
// 'is_pay',
// 'detail',
// 'created_at',
// 'updated_at',
// 'status',
['class' => 'yii\grid\ActionColumn'],
],
]); ?>