@extends('layouts.app') @section('content')
@if($Order) @foreach($Order->orderdetails as $item) @if($item->OrderProperties()->count() != 0) @else @endif @endforeach
Product image Features Price Quantity 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)
@endif

Total: @currency($Order->amount)

@endsection