Sammelrechnung behinhaltet folgende Kundenbestellungen

@if($shopping_order->shopping_collect_order) @foreach($shopping_order->shopping_collect_order->orders as $order) @php($order = $shopping_order->shopping_collect_order->initShoppingOrder($order))
@foreach($order['shopping_order']->shopping_order_items as $shopping_order_item) @endforeach
Bestellnummer: {{ $order['order_id'] }} | WP Number: {{ $order['wp_order_number'] }} | Points: {{ $order['shopping_order']->getFormattedPoints() }}
Rechnungsadresse: {{ $order['billing_address'] }}
{{__('Delivery address')}}: {{ $order['shipping_address'] }}
{{ __('tables.product') }} {{ __('tables.gross') }} {{ __('tables.quantity') }} {{ __('tables.sum') }}
{{ maxStrLength($shopping_order_item->product->getLang('name'), 35) }} #{{ $shopping_order_item->product->number }} {{ $shopping_order_item->getFormattedPrice() }} € {{ cleanIntegerFromString($shopping_order_item->qty) }} {{ $shopping_order_item->getFormattedTotalPrice() }} €
{{__('email.checkout_mail_shipping')}} {{ $order['shopping_order']->getFormattedShipping() }} €
{{__('email.checkout_mail_subtotal_ws')}} {{ $order['shopping_order']->getFormattedSubtotalWs() }} €
{{__('email.checkout_mail_tax')}} {{ $order['shopping_order']->getFormattedTax() }} €
{{__('email.checkout_mail_total')}} {{ $order['shopping_order']->getFormattedTotalShipping() }} €
@endforeach @endif