@php $totalAmount = $expenseByUser->sum('total_amount'); $totalEntries = $expenseByUser->sum('entry_count'); @endphp {{-- Stat cards --}}
| # | User | Entries | Avg per Entry | Total Amount | Share |
|---|---|---|---|---|---|
| {{ $i + 1 }} | {{ $row->user_name }} | {{ number_format($row->entry_count) }} | {{ number_format($row->avg_amount, 2) }} | {{ number_format($row->total_amount, 2) }} |
|
| Total | {{ number_format($totalAmount, 2) }} | ||||