@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 |
|---|---|---|---|---|---|---|---|
| {{ $transaction_purchases->firstItem() + $key }} | {{ $purchase->date }} | {{ $purchase->invoice_no }} | {{ optional($purchase->company)->name }} | {{ optional($purchase->account)->name }} | {{ number_format($total_paid, 2) }} | {{ number_format($total_due, 2) }} | {{ number_format($total_amount, 2) }} |
| Total In Page | {{ number_format($grand_total_paid, 2) }} | {{ number_format($grand_total_due, 2) }} | {{ number_format($grand_total_amount, 2) }} | ||||
| Grand Total | {{ number_format($total_purchase_paid, 2) }} | {{ number_format($total_purchase_due, 2) }} | {{ number_format($total_purchase_amount, 2) }} | ||||