📦 Refill Tracker

Agent: {{ $agent->code }} | Past 2 Weeks

← Back to Dashboard
{{ $shopsWithRefills }}
Shops Refilled
{{ $shopsWithoutRefills }}
Shops NOT Refilled
{{ $totalUnitsRefilled }}
Total Units Refilled
@foreach ($shopsData as $shopData) @if ($shopData['refills']->count() > 0)
{{ $shopData['shop']->name }}
{{ $shopData['shop']->code }}
+{{ $shopData['total_refilled'] }} units
@foreach ($shopData['refills'] as $refill)
{{ $refill->refill_code }}
{{ $refill->product->name }}
{{ $refill->request_date->format('M d, Y') }}
+{{ $refill->quantity_approved }} units
@endforeach
@endif @endforeach