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

Customer Profile

{{ $customer->full_name }}

{{ $customer->email }}

{{ $customer->phone ?? '-' }}

{{ $customer->orders()->count() }}

Total Orders

Rs {{ number_format($customer->orders()->sum('grand_total')) }}

Total Spend

{{ $customer->created_at->format('d M Y') }}

Joined

@endsection