Customer Management

Manage all your customers

Add Customer

Total Customers

{{ $customers->total() }}

Active

{{ $customers->where('status', 'active')->count() }}

Individual

{{ $customers->where('customer_type', 'individual')->count() }}

Business

{{ $customers->where('customer_type', 'business')->count() }}

@forelse($customers as $customer) @empty @endforelse
Customer Contact CNIC Address Type Status Registered Actions
{{ substr($customer->name, 0, 1) }}
{{ $customer->name }}
ID: #{{ $customer->id }}
{{ $customer->phone }}
@if($customer->email)
{{ $customer->email }}
@endif
{{ $customer->cnic }}
{{ $customer->address }}
{{ $customer->city }}
@if($customer->customer_type === 'individual') Individual @elseif($customer->customer_type === 'business') Business @else Corporate @endif @if($customer->status === 'active') Active @else Inactive @endif {{ $customer->created_at->format('M d, Y') }}
@csrf @method('DELETE')

No customers found. Add your first customer!

Add Customer
{{ $customers->links() }}