@extends('admin.layouts.app') @section('title', 'User Details') @section('content')
| {{ $user->email }} | |
| Phone | {{ $user->phone ?? '-' }} |
| Address | {{ $user->address ?? '-' }} |
| City | {{ $user->city ?? '-' }} |
| County | {{ $user->county ?? '-' }} |
| Joined | {{ $user->created_at->format('M d, Y H:i') }} |
| Order # | Total | Status | Date |
|---|---|---|---|
| {{ $order->order_number }} | KSh {{ number_format($order->total, 2) }} | {{ $order->status_badge['label'] }} | {{ $order->created_at->format('M d, Y') }} |
| No orders yet | |||