@extends('layouts.master') @section('title', 'Supplier Ledger') @section('page-header') Supplier Ledger @stop @push('style') @endpush @section('content')
| Sl | Date | Voucher No | Description | Dr. | Cr. | Balance |
|---|---|---|---|---|---|---|
| Opening Balance | {{ number_format($balance, 2) }} | |||||
| NO RECORDS FOUND! | ||||||
| {{ $loop->iteration }} | {{ $transaction->date }} | {{ $transaction->invoice_no }} | {{ $transaction->description }} | {{ number_format($transaction->debit_amount, 2) }} | {{ number_format($transaction->credit_amount, 2) }} | {{ number_format($balance, 2) }} |
| Total In Page | {{ number_format($total_debit, 2) }} | {{ number_format($total_credit, 2) }} | ||||
| Grand Total | {{ number_format($grand_total_debit_balance, 2) }} | {{ number_format($grand_total_credit_balance, 2) }} | ||||