@extends('admin.layouts.app') @section('title', 'Order Details') @section('page-title', 'Order Details') @section('content')
Order placed on {{ $order->created_at->format('M d, Y H:i') }}
| Product | Quantity | Price | Subtotal |
|---|---|---|---|
|
@if($item->product && $item->product->featured_image)
@endif
{{ $item->product ? $item->product->name : 'Deleted Product' }}
|
{{ $item->quantity }} | {{ number_format($item->price, 2) }} {{ $order->currency }} | {{ number_format($item->line_subtotal, 2) }} {{ $order->currency }} |
| Subtotal | {{ number_format($order->subtotal, 2) }} {{ $order->currency }} | ||
| Discount | - {{ number_format($order->discount, 2) }} {{ $order->currency }} | ||
| Shipping Fee | + {{ number_format($order->shipping_fee, 2) }} {{ $order->currency }} | ||
| Total | {{ number_format($order->total, 2) }} {{ $order->currency }} | ||
{{ $order->note }}
No additional order history found for this customer.
@endforelse