@extends('frontend.layouts.app') @section('content')
custom_information) class="col-xl-9 col-lg-8" @else class="col-12" @endif >

{{translate("Ordar Details ")}}

{{translate("Product")}} {{translate("Qty")}} {{translate("Attribute")}} {{translate("Total Price")}} {{translate('Status')}}
{{$orderDetail->product->name}}

{{$orderDetail->product->name}}

@php echo show_ratings($orderDetail->product->review->avg('ratings')) @endphp
{{$orderDetail->quantity}} {{@$digitalProductAttributes?$digitalProductAttributes->name : "N/A"}} {{short_amount($orderDetail->total_price)}} @php echo order_status_badge($orderDetail->status) @endphp
@if($order->custom_information)

{{translate("Custom information ")}}

    @foreach($order->custom_information as $key => $value)
  • {{$key}} : @if(is_array($value)) {{ implode(",", $value)}} @else {{$value}} @endif
  • @endforeach
@endif
@endsection