@extends('layouts.admin') @section('title', 'Customers') @section('subtitle', 'Manage and track customer profile records') @section('content')
| Customer Name | Phone | Shop / Company | Address | Sales Count | Total Spent | Actions |
|---|---|---|---|---|---|---|
| {{ $customer->name }} | {{ $customer->phone ?? '-' }} | {{ $customer->company ?? '-' }} | {{ Str::limit($customer->address, 50) ?? '-' }} | @if($customer->invoices_count > 0) @else - @endif | LKR {{ number_format($customer->total_spent, 2) }} | |
|
๐ฅ No customers found |
||||||