@extends('layouts.adminapp') @section('content')
{{-- =============================================== START SHOW AREA =============================================== --}}
@php $Y = date('Y', strtotime($Subscription->date)); $M = date('F', strtotime($Subscription->date)); $D = date('d', strtotime($Subscription->date)); $get_amount = PBFunc::AmountInWords($Subscription->amount); @endphp {{-- @include('PrintHeader.header') --}}
{{ __('lng.AnnualMemberSubscriptionPaymentReciept') }}

@currency($Subscription->amount)

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

{{ __('lng.SubscriptionMemberDetails') }}
{{ __('lng.Invoiceno') }} .
#{{ $Subscription->invoicenumber }}
{{ __('lng.Member') }}
{{ $Subscription->member->name ?? '' }}
{{ __('lng.HouseNo') }}
{{ $Subscription->member->house->registernumber ?? '' }}
{{ __('lng.HouseName') }}
{{ $Subscription->member->house->name ?? '' }}
{{ __('lng.Contact') }}
{{ $Subscription->member->contact ?? '' }}
{{ __('lng.TotalAmountinwords') }}
{{ $get_amount }} Only
@include('PrintHeader.CompanyDetails2')
{{-- =============================================== END SHOW AREA =============================================== --}} {{-- =============================================== START PRINT AREA =============================================== --}}
@php echo $ReceiptPrintForm->formate; @endphp
{{-- =============================================== END PRINT AREA =============================================== --}}
@endsection