@extends('layouts.adminapp') @section('content')
{{-- =============================================== START SHOW AREA =============================================== --}}
@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 {{-- @include('PrintHeader.header') --}} {{-- @include('PrintHeader.CompanyDetails') --}}
{{ __('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')
{{-- =============================================== END SHOW AREA =============================================== --}} {{-- =============================================== START PRINT AREA =============================================== --}}
@if ($CheckMember)
@csrf
@elseif($ProgramID) {{ __('lng.Done') }} @else {{ __('lng.Done') }} @endif {{ __('lng.Download') }}
{{-- =============================================== END PRINT AREA =============================================== --}} @endsection