Sales Dashboard

Agent: {{ $agent->code }}

Week: {{ $weekStart->format('M d') }} - {{ $weekEnd->format('M d, Y') }}

Total Sales
Rs. {{ number_format($stats['total_sales'], 2) }}
Total Collections
Rs. {{ number_format($stats['total_collections'], 2) }}
Your Shops
{{ $stats['total_shops'] }}
Weekly Allocations
{{ $stats['allocated_shops'] }}

This Week's Allocations

@if ($allocations->count() > 0)
@foreach ($allocations as $allocation)
{{ $allocation->shop->name }}

Code: {{ $allocation->shop->code }}

Record Sale Collect Payment Refill
@endforeach
@else

No allocations for this week yet.

Weekly allocations are created for active shops.

@endif
← Back to Agent Dashboard