@extends('layouts.adminapp') @section('title') {{ __('lng.Subscription') }} - {{ __('lng.Receipt') }} @endsection @section('active_transactions', 'active') @section('open_transactions', 'open') @section('open_subscription', 'open') @section('active_subscription', 'active') @section('active_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
{{ __('lng.MemberSubscriptionReciept') }}

@currency($Subscription->amount)

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

{{ __('lng.SubscriptionHouseDetails') }}
{{ __('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
{{-- @if (!$CheckMember) --}} {{ __('lng.Done') }} {{-- @else
@csrf
@endif --}} {{ __('lng.Download') }}
@endsection