@extends('layouts.app') @section('title', 'User Dashboard') @section('content')
Welcome, {{ $user->name }}!
| Order # | Date | Total | Status | Action |
|---|---|---|---|---|
| {{ $order->order_number }} | {{ $order->created_at->format('M d, Y') }} | {{ \App\Support\Currency::symbol() }}{{ number_format($order->total, 2) }} | {{ ucfirst($order->status) }} | View |
You haven't placed any orders yet. Start shopping!
Email: {{ $user->email }}
Phone: {{ $user->phone ?? 'Not provided' }}
City: {{ $user->city ?? 'Not provided' }}
Update Profile