@php($cartInstance = \App\Services\AboOrderCart::INSTANCE) @if(isset($error_message) && $error_message)
| # | {{__('order.article')}} | {{__('tables.quantity')}} | {{ __('tables.price') }} |
|---|---|---|---|
|
@if(count($abo_item->product->images))
|
{{ $abo_item->product->getLang('name') }}
{!! get_abo_type_badge_by_product($abo_item->product) !!}
{{ __('order.content') }}: {{ $abo_item->product->contents }}
{{ __('order.art_no') }}: {{ $abo_item->product->number }}
|
@if(!isset($only_show_products) || !$only_show_products)
@if(!isset($add_only_mode) || !$add_only_mode)
@endif
{{ $abo_item->qty }}
@endif
|
{{ $abo_item->getFormattedTotalPrice() }} €
|
| {{ __('abo.abo_subtotal') }}: | {{ formatNumber($summary['abo']['gross'] ?? 0) }} € | ||
| {{ __('abo.abo_next_delivery_total') }}: | {{ formatNumber($summary['total_with_shipping'] ?? 0) }} € | ||
| {{ __('order.subtotal') }}: | {{ Yard::instance($cartInstance)->subtotal() }} € | ||
| {{ __('Delivery country') }}: | {{ Yard::instance($cartInstance)->getShippingCountryName() }} | ||
| {{ __('order.shipping_costs') }}: | {{ $taxFree ? Yard::instance($cartInstance)->shippingNet() : Yard::instance($cartInstance)->shipping() }} € | ||
| {{ __('order.sum_net') }}: | {{ Yard::instance($cartInstance)->subtotalWithShipping() }} € | ||
| {{ __('order.total_without_VAT') }}: | {{ Yard::instance($cartInstance)->subtotalWithShipping() }} € | ||
| {{ __('order.plus_VAT') }}: | {{ Yard::instance($cartInstance)->taxWithShipping() }} € | ||
| {{ __('order.total_sum') }}: | {{ Yard::instance($cartInstance)->totalWithShipping() }} € | ||