@extends('layouts.deliverymanagerapp') @section('content')

Order No: #{{$Order->id}}

Payment Type: @if($Order->pay_status == 1) Cash on Delivery @endif
@php $date = date("F j, Y, g:i a",strtotime($Order->order_date));@endphp
Order Date: {{$date}}
@foreach($Order->orderdetails as $item) @if($item->OrderProperties()->count() != 0) @else @endif @endforeach
Product Image Features Price Qty Total
{{$item->product->title}} @foreach($item->OrderProperties as $OrderProperty)

{{App\ProductPropertyTypeValue::getValue($OrderProperty->property_value_id)->title}}

@endforeach
not mentioned@currency($item->product->sales_amount) {{$item->quantity}} @currency($item->total_amount)
Total: @currency($Order->amount)
@endsection