@php
$configData = Helper::appClasses();
@endphp
@extends('layouts/layoutMaster')
@section('title', 'Dashboard')
@section('vendor-style')
@endsection
@section('page-style')
@endsection
@section('vendor-script')
@endsection
@section('page-script')
@endsection
@section('content')
{{ __('Total Members') }}
{{$members}}
{{ __('Active Members') }}
{{$activeMembers}}
{{ __('Inactive Members') }}
{{$inactiveMembers}}
@foreach($membersCountBySubscription as $row)
{{ $row->subscription }} Members
{{$row->count}}
@endforeach
{{ __('Total Invoices') }}
{{$totalInvoices}}
{{ __('Month Invoices') }}
{{$monthInvoices}}
{{ __('Total Payments') }}
{{$totalPayments}}
{{ __('Month Payments') }}
{{$monthPayments}}
{{ __('Due Payments') }}
{{$due}}
@endsection