@extends('layouts.memberapp') @section('title') {{ __('lng.Donation') }} - {{ __('lng.Print') }} @endsection @section('active_donation', 'active') @section('content')

{{ $VoucherType->title }}

@php $Y = date('Y', strtotime($Donation->date)); $M = date('F', strtotime($Donation->date)); $D = date('d', strtotime($Donation->date)); $get_amount = PBFunc::AmountInWords($Donation->amount); @endphp
{{ __('lng.ReceiptVoucherReceipt') }}

@currency($Donation->amount)

{{ __('lng.Completed') }} . {{ $D }} {{ $M }} {{ $Y }}

{{ __('lng.ReceiptVoucherDetails') }}
{{ __('lng.Invoiceno') }} .
#{{ $Donation->invoicenumber }}
{{ __('lng.VoucherNumber') }} .
#{{ $Donation->vouchernumber }}
{{ __('lng.Name') }}
@if ($Donation->isGuest) {{ $Donation->name }}@else{{ $Donation->member->name ?? '' }} @endif
{{ __('lng.Phone') }}
@if ($Donation->isGuest) {{ $Donation->phone }}@else{{ $Donation->member->contact ?? '' }} @endif
{{ __('lng.TotalAmountinwords') }}
{{ $get_amount }} Only
{{ __('lng.Ledger') }}
{{ $Donation->Ledger->title }}
{{ __('lng.Head') }}
{{ $Donation->payhead->title }}
@if ($Donation->narration)
{{ __('lng.Narration') }}
@endif
{{ $Donation->narration }}
@include('PrintHeader.CompanyDetails2')
@endsection