@extends('layouts.master') @section('pagetitle') Order Management @endsection @section('title') Order Management @endsection @section('content') @php $customer = @$orders->customer_details; //dd( $orders->toArray() ); @endphp

Order Management

@include('layouts.alert')

Order Details


Order Note :
Payment Method : {{ @$orders->payment_method }}
Order Type :

{{ @$orders->order_amount }}
{{ @$orders->title }}
{{ @$orders->address}} {{ @$orders->city}} {{ @$orders->state}} {{ @$orders->country }}
{{ @$orders->order_note }}

@foreach($orders->orderDetails as $order) @endforeach
Menu Name Quantity Special Requirements
{{ @ucwords($order->menu_name) }}
Note: {{ $order->special_requirements }}
Addons:
    @foreach( $order->addons as $addon )
  • {{ $addon['name'] }} - {{ $addon['price'] }}
  • @endforeach
Attributes:
    @foreach( $order->attributes['attribute_detail'] as $key => $attribute)
  • {{ @$attribute->name }}
  • @endforeach
{{ @$order->quantity }} Unit Price

Total Tax Amount:
{{ @$orders->total_tax_amount }}
Total Fee Amount:
{{ @$orders->total_fee_amount }}
Delivery Fee:
{{ @$orders->delivery_charges }}
Total:
@foreach($orders->orderDetails as $order)
{{ @$order->amount }}
@endforeach

Customer


  • {{ @$customer['name'] }}
  • {{ @$customer['email'] }}
  • {{ @$customer['phone'] }}
@endsection @push('script') @endpush