@extends('layouts.admin') @section('page-title', 'Customers') @section('content')
You have total {{ $customers->total() }} customers
| # | Name | Phone | Total Spent | Last Login | Status | Options | |
|---|---|---|---|---|---|---|---|
| {{ $customers->firstItem() + $index }} |
@if($customer->avatar_url)
{{ $customer->name }} {{ maskEmail($customer->email) }} |
{{ $customer->phone ?? '—' }} | {{ price($customer->orders()->where('status', 'completed')->sum('total')) }} | @if(property_exists($customer, 'last_login_at') && $customer->last_login_at) {{ $customer->last_login_at->format('M d, Y h:i A') }} @else Never @endif |
View Profile
View Orders
@if(!$customer->banned_at)
@else
@endif
@if(!$customer->email_verified_at)
@else
@endif
|
||
|
No customers found Get started by importing or adding a new customer. |
|||||||