@extends('layouts.adminapp') @section('title') {{ __('lng.FundListPayment') }} - {{ __('lng.Receipt') }} @endsection @section('open_payments', 'open') @section('active_payments', 'active') @section('active_fund_list', 'active') @section('content')

{{ __('lng.Receipt') }}

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

@currency($FundListPayment->amount)

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

{{ __('lng.FundListPaymentDetails') }}
{{ __('lng.Invoiceno') }} .
#{{$FundListPayment->invoicenumber}}
{{__('lng.Member')}}
{{$FundListPayment->FundListDetails->Member->name ?? ''}}
{{__('lng.HouseNo')}}
{{$FundListPayment->FundListDetails->Member->house->registernumber ?? ''}}
{{__('lng.HouseName')}}
{{$FundListPayment->FundListDetails->Member->house->name ?? ''}}
{{__('lng.Contact')}}
{{$FundListPayment->FundListDetails->Member->contact ?? ''}}
{{__('lng.TotalAmountinwords')}}
{{ $get_amount }} Only
@include('PrintHeader.CompanyDetails2')
@php echo $ReceiptPrintForm->formate; @endphp
@endsection