Product
Total
@foreach ($order->orderDetails as $detail)
{{ $detail->product->name }} x{{ $detail->quantity }}
₱{{ number_format($detail->subtotal, 2) }}
@endforeach
Subtotal
₱{{ number_format($order->orderDetails->sum('subtotal'), 2) }}
Shipping
₱{{ number_format($order->shipping_fee, 2) }}
Discounts
-₱{{ number_format($order->discount, 2) }}
Redeem Points Used
-₱{{ number_format($order->redeemed_points, 2) }}
Total
₱{{ number_format($order->total, 2) }}
Payment Method
{{ $order->payment_method }}
Note
{{ $order->notes }}