<?= GridView::widget([
'dataProvider' => $dataProvider,
+ 'showPageSummary' => true,
'columns' => [
['attribute' => 'store_id', 'label' => 'Магазин', 'value' => function ($data) {
return CityStore::findOne($data['store_id'])->name ?? null;
}],
['attribute' => 'species', 'label' => 'Категория'],
- ['attribute' => 'goal', 'label' => 'Сумма', 'format' => ['decimal', 2]],
+ ['attribute' => 'goal', 'label' => 'Сумма', 'format' => ['decimal', 2], 'pageSummary' => true],
],
]); ?>
['attribute' => 'category', 'label' => 'Категория'],
['attribute' => 'subcategory', 'label' => 'Подкатегория'],
['attribute' => 'species', 'label' => 'Тип'],
- ['attribute' => 'goal', 'label' => 'Сумма', 'format' => ['decimal', 2]],
+ ['attribute' => 'goal', 'label' => 'Сумма', 'format' => ['decimal', 2], 'pageSummary' => true,],
];
?>
<?= GridView::widget([
'dataProvider' => $dataProvider,
+ 'showPageSummary' => true,
'columns' => $columns,
]); ?>
<?php