{{ __('Ordered Items') }}

@foreach($order->getItems() as $item) @endforeach
# {{ __('SKU') }} {{ __('Name') }} {{ __('Qty') }} {{ __('Price') }} {{ __('Subtotal') }}
{{ $loop->iteration }} {{ $item->product ? $item->product->sku : '' }} {{ $item->name }} {{ $item->quantity }} {{ format_price($item->price) }} {{ format_price($item->total) }}
{{ __('Order total') }}:
{{ format_price($order->total()) }}