@extends('layouts.adminapp') @section('title') {{ __('lng.HouseSubscriptionReport') }} @endsection @section('active_report', 'active') @section('open_report', 'open') @section('open_subscription_report', 'open') @section('active_subscription_report', 'active') @section('open_house_subscription_report', 'open') @section('active_house_subscription_report', 'active') @section('active_house_sd_subscription_report', 'active') @section('content')
{{ __('lng.SiNo') }} | {{ __('lng.Authority') }} | {{ __('lng.Reg.No.') }} | {{ __('lng.Place') }} | {{ __('lng.SubscriptionDateOfJoin') }} | {{ __('lng.OpeningBalance') }} {{ __('lng.Pending') }}/{{ __('lng.Advance') }} |
{{ __('lng.Amount') }} | {{ __('lng.Month') }} | {{ __('lng.Payable') }} | {{ __('lng.Payed') }} | {{ __('lng.Balance') }}/{{ __('lng.Advance') }} |
---|---|---|---|---|---|---|---|---|---|---|
{{ ++$si }} | @foreach ($HouseSubscription->house->members as $Member) @if ($Member->member_relation_id == App\Extra\General\DBFixedValues::AUTHORITY){{ $HouseSubscription->house->name }} - {{ $Member->name }} | @endif @endforeach{{ $HouseSubscription->house->registernumber }} | {{ $HouseSubscription->house->place }} | {{ $DTs }} | @if ($OpeningBalance < 0) @currency($OpeningBalance * -1) @elseif($OpeningBalance > 0) @currency($OpeningBalance) @else @currency($OpeningBalance) @endif | @currency($HouseSubscription->subscriptionpackage->amount ?? '0') | {{ $TotMonth }} | @currency($Payable) | @currency($Payed) | @if ($AdBal < 0) @currency($AdBal * -1) @elseif($AdBal > 0) @currency($AdBal) @else @currency($AdBal) @endif |
{{ __('lng.Showing') }} {{ $HouseSubscriptions->count() }} {{ __('lng.Items') }}