@extends('layouts.master') @section('title', 'Payment Voucher | ') @section('content') @include('partials.header') @include('partials.sidebar')

Payment Voucher

A Printable Payment Voucher Format

Received From: Cash / Bank
Voucher #{{ $payment->Id }}
Payment Mode: Cash / Bank
@php $total = 0; @endphp @foreach($details as $detail) @php $total += $detail->Amount; @endphp @endforeach
Payee (Receiver) Account Payer (Cash/Bank) Account Entry Narration Amount
{{ $detail->Account_Title }} {{ $detail->Payer_Account}} {{ $detail->Entry_Narration }} {{ number_format($detail->Amount, 2) }}
Total {{ number_format($total, 2) }}
@endsection @push('js') @endpush