@extends('admin.layouts.master') @section('content')

Order Detail

Order # {{$order->order_no}} Details
@if ($order->order_type == 'DINE_IN') @endif
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}}Table Number {{$order->table_no}}
Customer Name: {{$order->customer->name}} Customer Email: {{$order->customer->email}}
Customer Contact: {{$order->phone}} Customer Address: {{$order->address->detail}}
Order Notes: {{$order->note}}
@foreach($order->items as $item) @endforeach
Product Options (type) Rate Qty Price
{{$item->item->name}}
    @foreach($item->variations as $variation)
  • {{$variation->title}} : {{$variation->selected_option}}
  • @endforeach
{{$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
@endsection