@extends('layouts.adminapp') @section('title') {{ __('lng.AnnualMemberSubscriptionPayment') }} - {{ __('lng.Receipt') }} @endsection @section('active_transactions', 'active') @section('open_transactions', 'open') @section('open_annual_subscription', 'open') @section('active_annual_subscription', 'active') @section('active_annual_member_subscription_index', 'active') @section('content')

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

@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.AnnualMemberSubscriptionReciept') }}

@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')
@php echo $ReceiptPrintForm->formate; @endphp
@endsection