@php $company = \App\Models\Company::find(request('company_id')); @endphp @extends('layouts.master') @section('title','Account Ledger') @push('style') @endpush @section('content') @include('partials._alert_message')
| Sl | Date | Voucher No | Description | Dr. | Cr. | Balance |
|---|---|---|---|---|---|---|
| Opening Balance | {{ $balance }} | |||||
| NO RECORDS FOUND! | ||||||
| {{ $loop->iteration }} | {{ $transaction->date }} | {{ $transaction->invoice_no }} | {{ $transaction->getDescription() }} | {{ number_format($transaction->debit_amount, 2) }} | {{ number_format($transaction->credit_amount, 2) }} | {{ number_format($balance, 2) }} |
| Total: | {{ number_format($total_debit, 2) }} | {{ number_format($total_credit, 2) }} | {{ number_format($balance, 2) }} | |||