@extends('merchant.layouts.master') @section('content')
| Order Recieved: | {{$order->order_time}} on {{localTimeZone($order->created_at)->format('l \\, d/y/m')}} | Order Completed: | {{$order->completed_at ? localTimeZone($order->completed_at)->format("g:i a \\o\\n l \\, d/y/m") : '---'}} |
| Order Type: | {{$order->order_type}} | @if ($order->order_type == 'DINE_IN')Table Number | {{$order->table_no}} | @endif
| Customer Name: | {{$order->customer->name}} | Customer Email: | {{$order->customer->email}} |
| Customer Contact: | {{$order->phone}} | Customer Address: | {{$order->address->detail}} |
| Order Notes: | {{$order->note}} | ||
| Product | Options (type) | Rate | Qty | Price |
|---|---|---|---|---|
| {{$item->item->name}} |
|
{{$item->price / $item->quantity}} | {{$item->quantity}} | {{$item->price}} |
| Order Amount | {{$order->payable_amount}} AED | |||
| Delivery Charges | 0 AED | |||
| Discount | 0 AED | |||
| Total | {{$order->payable_amount}} AED | |||
| Platform Charges | 0 AED | |||