@extends('Admin.layout.app') @section('content')

Customers List

@forelse($customers as $customer) @empty @endforelse
ID Customer Email Phone Total Orders Total Spend Joined Action
#{{ $customer->id }}
{{ $customer->full_name }}
{{ $customer->email }} {{ $customer->phone ?? '-' }} {{ $customer->orders()->count() }} Rs {{ number_format($customer->orders()->sum('grand_total')) }} {{ $customer->created_at->format('d M Y') }}
No customers found.
@endsection