@extends('super-admin.layout') @section('title', 'User Details') @section('subtitle', "Viewing {$user->name}") @section('content')
{{ $user->name }}
{{ $user->email }}
{{ $user->phone ?? 'N/A' }}
{{ $user->created_at->format('M d, Y') }}
{{ $user->updated_at->diffForHumans() }}
| Order ID | Date | Items | Total | Status |
|---|---|---|---|---|
| #{{ $order->id }} | {{ $order->created_at->format('M d, Y') }} | {{ $order->items->sum('quantity') }} items | ₦{{ number_format($order->total_amount, 2) }} | {{ ucfirst($order->status) }} |
This user hasn't placed any orders yet.