How to access the current group value on summarize function
I know I can access the current active group with
$livewire->getTableGrouping()?->getId()
but what I need is the value of the group.
I have a summary that sums only values with the same currency and I want to format using the correct currency per group.
For example: If my table has dollars and euros, when I group by currency I want to show the sum of the dollars as $ and the sum of the euros as €0 Replies