@extends('layouts.admin') @section('page-title', $customer->name) @section('content') {{-- Header --}}
Customer Profile & Activity
{{ $customer->orders_count }}
Total Orders
{{ price($customer->orders()->where('status', 'completed')->sum('total')) }}
Total Spent
{{ $customer->reviews_count }}
Reviews Given
{{ $customer->created_at->diffForHumans(short: true) }}
Account Age
Customer
Email Address
{{ $customer->email }}
Phone Number
{{ $customer->phone ?? 'Not provided' }}
| Order | Date | Total | Status | Action |
|---|---|---|---|---|
| {{ $order->order_number }} | {{ $order->created_at->format('M d, Y') }} | {{ price($order->total) }} | {{ ucfirst($order->status) }} | View |
No orders yet
Orders placed by this customer will appear here.
{{ $review->product->name ?? 'Unknown Product' }}
{{ $review->created_at->format('M d, Y') }} · {{ $review->created_at->diffForHumans() }}
{{ Str::limit($review->comment, 200) }}
@endifNo reviews yet
Reviews written by this customer will appear here.