Kunden-, Rechnungsadresse
@if($shopping_user->billing_company)
Firma
{{ $shopping_user->billing_company }}
@endif
Anrede
{{ \App\Services\HTMLHelper::getSalutationLang($shopping_user->billing_salutation) }}
Vorname
{{ $shopping_user->billing_firstname }}
Nachname
{{ $shopping_user->billing_lastname }}
Straße
{{ $shopping_user->billing_address }}
Zusatz
{{ $shopping_user->billing_address_2 }}
PLZ
{{ $shopping_user->billing_zipcode }}
Stadt
{{ $shopping_user->billing_city }}
Land
{{ $shopping_user->billing_country->getLocated() }}
Telefon
{{ $shopping_user->billing_phone }}

Lieferadresse
@if($shopping_user->same_as_billing) {{__('email.checkout_mail_same_address')}} @else
@if($shopping_user->shipping_company)
Firma
{{ $shopping_user->shipping_company }}
@endif
Anrede
{{ \App\Services\HTMLHelper::getSalutationLang($shopping_user->shipping_salutation) }}
Vorname
{{ $shopping_user->shipping_firstname }}
Nachname
{{ $shopping_user->shipping_lastname }}
Straße
{{ $shopping_user->shipping_address }}
Zusatz
{{ $shopping_user->shipping_address_2 }}
PLZ
{{ $shopping_user->shipping_zipcode }}
Stadt
{{ $shopping_user->shipping_city }}
Land
{{ $shopping_user->shipping_country->getLocated() }}
Telefon
{{ $shopping_user->shipping_phone }}
@endif