{{ __('Order number') }}: {{ $order->code }}
@foreach ($order->products as $orderProduct)
{{ $orderProduct->product_name }} {{ $orderProduct->qty }}

{{ $orderProduct->product_name }}

{{ Arr::get($orderProduct->options, 'attributes', '') }}

@if (! empty($orderProduct->product_options) && is_array($orderProduct->product_options)) {!! render_product_options_html($orderProduct->product_options, $orderProduct->price) !!} @endif @include('plugins/ecommerce::themes.includes.cart-item-options-extras', ['options' => $orderProduct->options])

{{ format_price($orderProduct->price) }}

@endforeach @if (! empty($isShowTotalInfo)) @include('plugins/ecommerce::orders.thank-you.total-info', compact('order')) @endif