@extends('layouts.app') @section('title', 'WHMCS Admin - Customers') @section('page-title', 'Customer Management') @section('breadcrumb') Dashboard Customers @endsection @section('operation') @endsection @section('content')
1,247
Total Customers
+12% from last month
1,247
Active Customers
+12% from last month
1,247
New This Month
+12% from last month
1,247
Inactive Customers
+12% from last month
Customer Management
@forelse($customers ?? [] as $customer) @empty @endforelse
Customer Email Company Licenses Status Joined Actions
{{ strtoupper(substr($customer->first_name, 0, 1) . substr($customer->last_name, 0, 1)) }}
{{ $customer->first_name }} {{ $customer->last_name }}
ID: {{ $customer->id }}
{{ $customer->email }} {{ $customer->company ?? '-' }} {{ $customer->licenses_count ?? 0 }} {{ ucfirst($customer->status) }} {{ $customer->created_at->format('M d, Y') }}
JD
John Doe
ID: 1
john.doe@example.com Acme Corp 3 Active Jan 15, 2024
@include('modals.add-customer') @endsection @push('scripts') @endpush