@php $attribute = $orderAttribute->attribute ; $values = $orderAttribute->values() ; // $prices = (array)$orderAttribute->attribute_prices ; // $prices = array_values($prices) ; @endphp {{-- @if($orderAttribute->attribute_id == '113') @dd($values) @endif --}} @if($orderAttribute->attribute && $values->isNotEmpty()) @foreach($values as $value)

@if($loop->first) {{ str_replace(__('back.method') ,'', $attribute->name) }} @endif
{{ (is_object($value))? $value->value : $value }}

@if($attribute->price_related_to_quantity==1) {{$details->quantity }} @endif

@if($model->category_id != 168 && is_object($value) )

{{ ($value->price!='') ? $value->price + ($value->price * $tax) : '-' }}

@endif @if($model->category_id != 168 && is_object($value) ) @php $quantity = ($attribute->price_related_to_quantity==1) ? $details->quantity:1 ; @endphp {{ ($value->price!='') ? ($value->price + ($value->price * $tax)) * $quantity : '-' }} @endif @endforeach @endif