@foreach($byGateway as $gw)
@php
$gwColors = ['razorpay'=>'#3b82f6','stripe'=>'#8b5cf6','phonepe'=>'#f59e0b','cash'=>'#22c55e','manual'=>'#64748b'];
$gwColor = $gwColors[strtolower($gw->gateway)] ?? '#64748b';
@endphp
{{ $gw->gateway }}
ยท {{ $gw->count }} txns
{{ $currency }} {{ $gw->total }}
@endforeach
@if($byGateway->isEmpty())
No data yet
@endif