Consilio Designing & Architectural Firm
Type : | {{ $payment->VoucherType }} |
ID : | {{ $payment->Id }} |
Date : | {{ \Carbon\Carbon::parse($voucherDetails[0]->VoucherDate)->format('d-m-Y') }} |
A/c. ID # |
Account Title |
Entry Narration |
Debit |
Credit |
@foreach ($voucherDetails as $row)
{{ $row->Account_ID }} |
{{ $row->Account_Title }} |
{{ $row->Entry_Narration }} |
{{ $row->entryType === 'D' ? number_format($row->Amount, 2) : '' }} |
{{ $row->entryType === 'C' ? number_format($row->Amount, 2) : '' }} |
@endforeach
Total |
{{ number_format($totalDebit, 2) }} |
{{ number_format($totalCredit, 2) }} |
Amount in Words: Rupees {{ convertNumberToWords(round($totalDebit)) }} Only
@endsection