Payment Details
Customer : {{ $order->user->name }}
Contact : {{ $order->user->contact_number }}
Email : {{ $order->user->email }}
Status: {{ $order->order_status }}
Payment Method: {{ $order->payment->payment_type }}
Payment Status: {{ $order->payment->payment_status }}
Order Date: {{ $order->order_datetime }}
Product | Quantity | Price (RM) | Discount (%) | Amount (RM) |
---|---|---|---|---|
{{ $item->product->product_name }} | {{ $item->order_item_quantity }} | {{ number_format($item->order_item_price, 2) }} | {{ number_format($item->order_item_discount, 2) }} | {{ number_format($item->order_item_amount, 2) }} |
Total | {{ number_format($order->order_total_price, 2) }} |