@extends('layouts.adminapp') @section('title') {{ $VoucherType->title }} - {{ __('lng.Receipt') }} @endsection @section('active_register', 'active') @section('open_register', 'open') @section('open_receipt', 'open') @section('active_receipt', 'active') @section('active_receipt_voucher' . $VoucherType->title, '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.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')
@if ($CheckMember)
@csrf
@elseif($ProgramID) {{ __('lng.Done') }} @else {{ __('lng.Done') }} @endif {{ __('lng.Download') }}
@endsection