@include('components.reports-component', [
'pageTitle' => 'Station Rating Report',
'data' => $stationRatingData ?? [],
'columns' => [
['name' => 'Transaction Date and Time', 'key' => 'transactionDateTime', 'sortable' => true],
['name' => 'Card Number', 'key' => 'cardNumber', 'sortable' => true],
['name' => 'Sales Invoice', 'key' => 'salesInvoice', 'sortable' => true],
['name' => 'Station', 'key' => 'station', 'sortable' => true],
['name' => 'Ratings', 'key' => 'ratings', 'sortable' => true]
],
'allFields' => [],
'actions' => [],
'showAddButton' => false,
'showCheckboxes' => false,
'showBatchDelete' => false,
'showSearch' => false,
'currentPage' => $currentPage ?? 1,
'lastPage' => $lastPage ?? 1,
'total' => $total ?? 0,
])