Order Details

Order #{{ $order->id }}

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 }}

HLH Logo Plasticware Logo

Order Date: {{ $order->order_datetime }}

@foreach($order->orderItems as $item) @endforeach
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) }} {{ number_format($item->order_item_amount, 2) }}
Total {{ number_format($order->order_total_price, 2) }}
CANCEL Print Order