📊 Report Summary
Total Bills: {{ $totalBills }}
📅 Month-wise Bills
@foreach($monthWise as $month => $bills)
- {{ $month }}: {{ $bills->count() }}
@endforeach
👤 Client-wise Bills
@foreach($clientWise as $clientId => $bills)
- {{ $bills->first()->customer->customer_name ?? 'Unknown' }}: {{ $bills->count() }}
@endforeach
📆 Date-wise Bills
@foreach($dateWise as $date => $bills)
- {{ $date }}: {{ $bills->count() }}
@endforeach