Monthly Customer & Subscription Report

Audit active, expiring, and expired monthly subscription accounts.

Active Subscriptions
{{ number_format($activeCount) }}
Expiring Soon (≤ 7 Days)
{{ number_format($expiringCount) }}
Expired Accounts
{{ number_format($expiredCount) }}
Total Renewal Revenue
৳{{ number_format($totalRenewalRevenue, 2) }}
@forelse($customers as $cust) @empty @endforelse
Customer Code Customer Name Vehicle Plate Category Monthly Rate Expiry Date Status
ID: {{ $cust->customer_code }} {{ $cust->name }} {{ $cust->vehicle_number }} {{ $cust->vehicleCategory->name ?? 'N/A' }} ৳{{ number_format($cust->monthly_fee, 2) }} {{ $cust->expiry_date->format('d M, Y') }} {{ $cust->isValidSubscription() ? 'Active' : 'Expired' }}
No customer records found.
{{ $customers->links() }}