@if ($shopping_order->shopping_user->is_from === 'shopping' ||
$shopping_order->shopping_user->is_from === 'extern')
{{ __('order.billing_address_of_client') }}
@else
{{ __('order.billing_address_of_the_advisor') }}
@endif
@if ($shopping_order->shopping_user->billing_company)
{{ __('Company') }}
{{ $shopping_order->shopping_user->billing_company }}
@endif
{{ __('Salutation') }}
{{ \App\Services\HTMLHelper::getSalutationLang($shopping_order->shopping_user->billing_salutation) }}
{{ __('First name') }}
{{ $shopping_order->shopping_user->billing_firstname }}
{{ __('Last name') }}
{{ $shopping_order->shopping_user->billing_lastname }}
{{ __('Street') }}
{{ $shopping_order->shopping_user->billing_address }}
{{ __('Addition') }}
{{ $shopping_order->shopping_user->billing_address_2 }}
{{ __('Postcode') }}
{{ $shopping_order->shopping_user->billing_zipcode }}
{{ __('City') }}
{{ $shopping_order->shopping_user->billing_city }}
{{ __('E-Mail') }}
{{ $shopping_order->shopping_user->billing_email }}
{{ __('Phone') }}
{{ $shopping_order->shopping_user->billing_phone }}
{{ __('Country') }}
{{ $shopping_order->shopping_user->billing_country->getLocated() }}
@if ($shopping_order->shopping_user->is_from !== 'homeparty')
@if ($shopping_order->shopping_user->is_from === 'user_order' ||
$shopping_order->shopping_user->is_from === 'extern')
@if ($shopping_order->shopping_user->is_for === 'me')
{{ __('order.delivery_address_of_the_consultant') }}
@else
{{ __('order.delivery_address_of_the_client') }}
@endif
@endif
@if ($shopping_order->shopping_user->is_from === 'wizard')
{{ __('order.delivery_address_of_the_consultant') }}
@endif
@if ($shopping_order->shopping_user->is_from === 'membership')
{{ __('order.delivery_address_of_the_consultant') }}
@endif
@if ($shopping_order->shopping_user->is_from === 'shopping')
{{ __('order.delivery_address_of_the_client') }}
@endif
@if ($shopping_order->shopping_user->same_as_billing)
{{ __('email.checkout_mail_same_address') }}
@else
@if ($shopping_order->shopping_user->shipping_company)
{{ __('Company') }}
{{ $shopping_order->shopping_user->shipping_company }}
@endif
{{ __('Salutation') }}
{{ \App\Services\HTMLHelper::getSalutationLang($shopping_order->shopping_user->shipping_salutation) }}
{{ __('First name') }}
{{ $shopping_order->shopping_user->shipping_firstname }}
{{ __('Last name') }}
{{ $shopping_order->shopping_user->shipping_lastname }}
{{ __('Street') }}
{{ $shopping_order->shopping_user->shipping_address }}
{{ __('Addition') }}
{{ $shopping_order->shopping_user->shipping_address_2 }}
{{ __('Postcode') }}
{{ $shopping_order->shopping_user->shipping_zipcode }}
{{ __('City') }}
{{ $shopping_order->shopping_user->shipping_city }}
{{ __('E-Mail') }}
{{ $shopping_order->shopping_user->shipping_email }}
{{ __('Phone') }}
{{ $shopping_order->shopping_user->shipping_phone }}
@if($shopping_order->shopping_user->shipping_postnumber)
{{ __('payment.dhl_postnumber') }}
{{ $shopping_order->shopping_user->shipping_postnumber }}
{{ __('payment.packstation_delivery') }}
@endif
{{ __('Country') }}
{{ $shopping_order->shopping_user->shipping_country->getLocated() }}
@endif
@endif
{{ __('tables.payment') }}
@if ($shopping_order->txaction !== 'extern')
| # |
{{ __('tables.payment_type') }} |
{{ __('tables.total') }} |
{{ __('tables.status') }} |
{{ __('tables.date') }} |
{{ __('tables.reference_number') }} |
{{-- Daten werden per AJAX über DataTables geladen --}}
@push('scripts')
@endpush
@else
- {{ __('order.order_via_external_shop') }}
@endif