Customer Orders
View shopping history for all customers.
@extends('layouts.main') @section('content')
View shopping history for all customers.
| Order # | Customer | Product Name | Qty | Price | Status | Order Date |
|---|---|---|---|---|---|---|
| {{ $order->order_number ?? 'N/A' }} |
{{ $order->user_name ?? 'Guest' }}
{{ $order->user_email ?? '' }}
{{ $order->user_phone ?? '' }}
|
{{ $order->product_name ?? 'Unknown Item' }} | {{ $order->qty ?? 1 }} | ₹{{ number_format($order->price ?? 0, 2) }} | @if(strtolower($order->status ?? '') == 'completed' || strtolower($order->status ?? '') == 'success') {{ $order->status }} @else {{ $order->status ?? 'Pending' }} @endif | {{ \Carbon\Carbon::parse($order->created_at ?? ($order->date ?? date('Y-m-d')))->format('d M, Y h:i A') }} |
No orders have been placed yet.