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

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

@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)
@csrf
@error('employee_id')
{{$message}}
@enderror @error('order_id')
{{$message}}
@enderror
@endsection