Supplier Aging Report

Generated: {{ now()->format('Y-m-d H:i:s') }}

@php $totalOutstanding = 0; @endphp @forelse($items as $item) @php $totalOutstanding += $item->outstanding ?? 0; @endphp @empty @endforelse @if(count($items ?? []) > 0) @endif
Vendor Name Bill ID Reference Bill Date Total Paid Outstanding Aging
{{ $item->vendor_name ?? '-' }} {{ $item->bill_id ?? '-' }} {{ $item->reference_no ?? '-' }} {{ $item->bill_date ?? '-' }} {{ number_format($item->total_amount ?? 0, 2) }} {{ number_format($item->paid_amount ?? 0, 2) }} {{ number_format($item->outstanding ?? 0, 2) }} {{ $item->aging_bucket ?? '-' }}
No supplier aging records found
Total Outstanding: {{ number_format($totalOutstanding, 2) }}