{{-- Header --}}
Supplier Balance Sheet
Closing = Opening + Purchases − Payments − Advances − Returns
{{-- Filter --}}
{{-- Summary --}}
{{-- Table --}}
Total Opening
{{ number_format((float) ($totals['opening'] ?? 0), 2) }}
Total Purchases
{{ number_format((float) ($totals['purchase'] ?? 0), 2) }}
Total Credits
{{ number_format((float) (($totals['payment'] ?? 0) + ($totals['advance'] ?? 0) + ($totals['return'] ?? 0)), 2) }}
Payments + Advances + Returns
Total Closing
{{ number_format((float) ($totals['closing'] ?? 0), 2) }}