@extends('admin.layouts.app') @section('title', 'Customers') @section('content')
| Customer | Phone | Orders | Joined | |
|---|---|---|---|---|
|
{{ strtoupper(substr($customer->first_name ?? $customer->phone, 0, 1)) }}
{{ $customer->first_name }} {{ $customer->last_name }}
@if($customer->is_guest)Guest@endif
|
{{ $customer->phone }} | {{ $customer->email ?? '—' }} | {{ $customer->orders_count }} | {{ $customer->created_at->format('d M Y') }} |
| No customers found | ||||