Monthly Customer Management

Manage active subscribers, renewal schedules, and customer vehicle accounts.

@if(session('success'))
{{ session('success') }}
@endif
Reset
@forelse($customers as $customer) @empty @endforelse
Customer & Code Vehicle Number Category Monthly Rate Expiry Date Status Actions
{{ $customer->name }}
ID: {{ $customer->customer_code }} {{ $customer->vehicle_number }} @if($customer->barcode) Card: {{ $customer->barcode }} @endif • {{ $customer->mobile }}
{{ $customer->vehicle_number }} {{ $customer->vehicleCategory->name ?? 'N/A' }} ৳{{ number_format($customer->monthly_fee, 2) }}/mo
{{ $customer->expiry_date->format('d M, Y') }}
@if($customer->expiry_date->isFuture()) Expires in {{ $customer->expiry_date->diffInDays(now()) }} days @else Expired {{ $customer->expiry_date->diffInDays(now()) }} days ago @endif
@if($customer->status === 'active' && $customer->expiry_date->isFuture()) @if($customer->isExpiringSoon()) Expiring Soon @else Active Sub @endif @elseif($customer->status === 'suspended') Suspended @else Expired Sub @endif Profile Renew
No monthly customer records found.
{{ $customers->links() }}