title = Yii::t('common/card', 'Cards'); $this->params['breadcrumbs'][] = $this->title; ?>
= Html::a(Yii::t('common/card', 'Create Card'), ['create'], ['class' => 'btn btn-success']) ?>
= GridView::widget([ 'dataProvider' => $dataProvider, 'columns' => [ ['class' => 'yii\grid\SerialColumn'], [ 'attribute' => 'number', 'value' => 'number' ], [ 'attribute' => 'status', 'value' => 'statusHuman' ], [ 'attribute' => 'type', 'value' => 'typeHuman' ], [ 'attribute' => 'customerName', 'value' => 'customerName' ], 'updated_at:datetime', [ 'class' => 'yii\grid\ActionColumn', 'template' => '{view}{update}' ], ], ]); ?>