@extends('layouts.adminapp') @section('title') {{ __('lng.AnnualHouseSubscriptionPayment') }} - {{ __('lng.Receipt') }} @endsection @section('active_transactions', 'active') @section('open_transactions', 'open') @section('open_annual_subscription', 'open') @section('active_annual_subscription', 'active') @section('active_annual_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.AnnualHouseSubscriptionReciept') }}

@currency($Subscription->amount)

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

{{ __('lng.SubscriptionHouseDetails') }}
{{ __('lng.Invoiceno') }} .
#{{ $Subscription->invoicenumber }}
{{ __('lng.HouseNo') }}
{{ $Subscription->house->registernumber ?? '' }}
{{ __('lng.Author') }}
@foreach ($Subscription->house->members as $Member) @if ($Member->member_relation_id == App\Extra\General\DBFixedValues::AUTHORITY) {{ $Member->name }} @php $AuthorName = $Member->name; $AuthorContact = $Member->contact; @endphp @endif @endforeach
{{ __('lng.HouseName') }}
@foreach ($Subscription->house->members as $Member) @if ($Member->member_relation_id == App\Extra\General\DBFixedValues::AUTHORITY) {{ $Subscription->house->name }} @endif @endforeach
{{ __('lng.Contact') }}
@foreach ($Subscription->house->members as $Member) @if ($Member->member_relation_id == App\Extra\General\DBFixedValues::AUTHORITY) {{ $Member->contact }} @endif @endforeach
{{ __('lng.TotalAmountinwords') }}
{{ $get_amount }} Only
@include('PrintHeader.CompanyDetails2')
@php echo $ReceiptPrintForm->formate; @endphp
@if (!$CheckMember) {{ __('lng.Done') }} @else
@csrf
@endif {{ __('lng.Download') }}
@endsection