@extends('layouts.admin') @section('content')
Manage registered customers and subscription status
Total Customers
Premium Customers
Active Subscriptions
Expired Accounts
| Customer | Type | Subscription | Actions | |
|---|---|---|---|---|
| {{ $customer->name }} | {{ $customer->email ?? '—' }} | {{-- Type Badge --}}@if($customer->customer_type === 'premium') Premium @else Normal @endif | {{-- Subscription --}}@if($customer->subscription_active) Active @elseif($customer->subscription_expiry) Expired @else Not Subscribed @endif | {{-- Actions --}}|
| No customers found | ||||