@foreach ($shipment->order->products as $orderProduct) @php $product = $orderProduct->product->original_product; @endphp
{{ $product->name }}
{{ $orderProduct->product_name }} @if ($attributes = Arr::get($orderProduct->options, 'attributes'))
{{ $attributes }}
@endif @if ($sku = Arr::get($orderProduct->options, 'sku') ?: ($product && $product->sku ? $product->sku : null))

{{ trans('plugins/ecommerce::shipping.sku') }}: {{ $sku }}

@endif
{{ $orderProduct->qty }} × {{ format_price($orderProduct->price) }} {{ format_price($orderProduct->price * $orderProduct->qty) }}
@endforeach
@if ($orderEditRouteName) {{ trans('plugins/ecommerce::shipping.view_order', ['order_id' => $shipment->order->code]) }} @endif