@extends('layouts.app') @section('title', 'Customers') @section('breadcrumb')
Manage your customer database
| Customer | Contact | Group | Total Purchases | Loyalty Points | Status | Actions |
|---|---|---|---|---|---|---|
|
{{ strtoupper(substr($customer->name, 0, 1)) }}
{{ $customer->name }}
@if($customer->city)
{{ $customer->city }}
@endif
|
@if($customer->phone)
{{ $customer->phone }}
@endif
@if($customer->email)
{{ $customer->email }}
@endif
|
@if($customer->group) {{ $customer->group->name }} @else - @endif |
Rs. {{ number_format($customer->total_purchases, 2) }}
{{ $customer->total_orders }} orders |
{{ number_format($customer->loyalty_points) }}
@if($customer->loyalty_tier)
{{ ucfirst($customer->loyalty_tier) }} @endif |
@if($customer->is_active) Active @else Inactive @endif | |
|
No customers found Add First Customer |
||||||