@extends('layouts.app') @section('content')
| Product | image | Features | Price | Quantity | 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)