Order #{{ $order->id }}
Placed on {{ $order->created_at->format('F j, Y \a\t g:i A') }}
Order Details
Order Status
Pending
Payment Status
Pending
Payment Method
{{ ucwords(str_replace('_', ' ', $order->payment_option)) }}
Total Amount
{{ number_format($order->total_amount, 2) }} {{ $config->currancy ?? '' }}
Order Items
@foreach ($orderItems as $item)
@endforeach
{{ $item->product->name }}
Quantity: {{ $item->quantity }}
{{ number_format($item->total, 2) }} {{ $config->currancy ?? '' }}
Subtotal:
{{ number_format($order->total_amount, 2) }} {{ $config->currancy ?? '' }}
Total:
{{ number_format($order->total_amount, 2) }} {{ $config->currancy ?? '' }}
Shipping Address
{{ $customer->first_name }} {{ $customer->last_name }}
{{ $customer->address }}
{{ $customer->city }}, {{ $customer->state }} {{ $customer->zip }}
{{ $customer->country }}
Phone: {{ $customer->phone }}
{{ $customer->address }}
{{ $customer->city }}, {{ $customer->state }} {{ $customer->zip }}
{{ $customer->country }}
Phone: {{ $customer->phone }}