Hello {{auth()->user()->username}}
From your account dashboard. you can easily check & view your recent orders,
manage your shipping and billing addresses and edit your password and account details.
Your Orders
| Sl | Date | Totaly | Payment | Invoice | Status | Actions |
|---|---|---|---|---|---|---|
| {{ $key+1 }} | {{ $order->order_date }} | ${{ $order->amount }} | {{ $order->payment_method }} | {{ $order->invoice_no }} | @if($order->status == 'pending') Pending @elseif($order->status == 'confirm') Confirm @elseif($order->status == 'processing') Processing @elseif($order->status == 'deliverd') Deliverd @if($order->return_order == 1) Return @endif @endif | View Invoice |
Orders tracking
Track Your Order
Your Orders
| Sl | Date | Totaly | Payment | Invoice | Reason | Status | Actions |
|---|---|---|---|---|---|---|---|
| {{ $key+1 }} | {{ $order->order_date }} | ${{ $order->amount }} | {{ $order->payment_method }} | {{ $order->invoice_no }} | {{ $order->return_reason }} | @if($order->return_order == 0) No Retrun Request @elseif($order->return_order == 1) Pedding @elseif($order->return_order == 2) Success @endif | View Invoice |