@extends('layouts.deliverymanagerapp')
@section('content')
| Product | Image | Features | Price | Qty | Total | |
|---|---|---|---|---|---|---|
| {{$item->product->title}} |
@foreach($item->OrderProperties as $OrderProperty)
{{App\ProductPropertyTypeValue::getValue($OrderProperty->property_value_id)->title}} @endforeach |
@else
not mentioned | @endif@currency($item->product->sales_amount) | {{$item->quantity}} | @currency($item->total_amount) | |
| Total: @currency($Order->amount) |