{{ $user->email }}
Role
{{ ucfirst($user->role) }}
Total Orders
{{ $user->orders->count() }}
Registered
{{ $user->created_at->format('M d, Y') }}
| Order # | Total | Status | Date |
|---|---|---|---|
| {{ $order->order_number }} | ${{ number_format($order->total, 2) }} | {{ ucfirst($order->status) }} | {{ $order->created_at->format('M d, Y') }} |
No orders found
@endif