@extends('layouts.adminapp') @section('title') {{ __('lng.SubscriptionVoucher') }} - {{ __('lng.Print') }} @endsection @section('active_report', 'active') @section('open_report', 'open') @section('open_voucher', 'open') @section('active_voucher', 'active') @section('member_subscription_voucher', 'active') @section('content')

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

@include('PrintHeader.header')

{{__('lng.MemberSubscriptionVoucherReport')}}
{{ __('lng.FromDate') }}: {{ date('d-m-Y', strtotime($From)) }}, {{ __('lng.ToDate') }}: {{ date('d-m-Y', strtotime($To)) }},
@php $si=$Total=0; @endphp @foreach ($Subscriptions as $Subscription) @php $DTs = date("F-d-Y",strtotime($Subscription->date));@endphp @php $Total+=$Subscription->amount; @endphp @endforeach
{{__('lng.SiNo')}} {{ __('lng.Member') }} {{ __('lng.HouseName') }} {{ __('lng.Invoice') }} {{ __('lng.Date') }} {{ __('lng.Head') }} {{ __('lng.Amount') }}
{{ ++$si }} {{ $Subscription->member->name ?? '' }} {{ $Subscription->member->house->name ?? '' }} {{ $Subscription->invoicenumber }} {{ $DTs }} {{ $Subscription->Head->title }} @currency($Subscription->amount ?? '0')
{{ __('lng.Total') }} @currency($Total)
{{ __('lng.Back') }}
@endsection