@extends('layouts.master') @section('title', 'Supplier Report') @section('page-header') Supplier Report @stop @push('style') @endpush @section('content')
| Sl | Date | Inv No | Company | Supplier | Paid | Due | Total |
|---|---|---|---|---|---|---|---|
| {{ $purchases->firstItem() + $key }} | {{ $purchase->date }} | {{ $purchase->invoice_no }} | {{ optional($purchase->company)->name }} | {{ optional($purchase->supplier)->name }} | {{ number_format($purchase->paid_amount, 2) }} | {{ number_format($purchase->due_amount, 2) }} | {{ number_format($purchase->total_amount, 2) }} |
| Total In Page | {{ number_format($total_paid, 2) }} | {{ number_format($total_due, 2) }} | {{ number_format($total_amount, 2) }} | ||||
| Grand Total | {{ number_format($grand_total_debit_balance, 2) }} | {{ number_format($grand_total_credit_balance, 2) }} | |||||