@if($isAdmin)
E-Mail
{{ $shopping_user->billing_email }}
Kundennummer
{{$shopping_user->number}}
Datum
{{$shopping_user->created_at->format("d.m.Y H:i")}}
@else
E-Mail
{{ $shopping_user->billing_email }}
Kundennummer
{{$shopping_user->number}}
Erstellt
{{$shopping_user->firstEntryByNumber()->created_at->format("d.m.Y H:i")}}
@endif

@if($isAdmin)
@if(isset($change_member_error) && $change_member_error)
  • {{ $change_member_error }}
@endif
Zugewiesener Berater
@if($shopping_user->is_like) @else @if($shopping_user->member) {{$shopping_user->member->getFullName()}} #{{$shopping_user->member->number}} @endif @endif
Über Shop
@if($shopping_user->shopping_order) @if($shopping_user->shopping_order->user_shop->user->isActive() && $shopping_user->shopping_order->user_shop->user->isActiveShop()) {{$shopping_user->shopping_order->user_shop->getSubdomain(false)}} @else {{$shopping_user->shopping_order->user_shop->getSubdomain(false)}} @endif @endif
ist Berater
@if($shopping_user->auth_user) {{$shopping_user->auth_user->getFullName()}} #{{$shopping_user->auth_user->number}} @else @endif

@endif
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

Kunde
@if($shopping_user->has_buyed) Kunde hat schon gekauft. @else Kunde hat noch nicht gekauft. @endif
@if($shopping_user->subscribed) Kunde ist für Newsletter abonniert. @else Kunde ist nicht für Newsletter abonniert. @endif

@if($isAdmin)
Bestellung
@if($shopping_user->shopping_order) @foreach($shopping_user->shopping_order->shopping_order_items as $shopping_order_item) @endforeach @endif
Produkt Anzahl Preis
@if($shopping_order_item->product->images) @if($image = $shopping_order_item->product->images->first()) @endif @endif
{{ $shopping_order_item->product->name }} #{{ $shopping_order_item->product->number }} Inhalt: {{ $shopping_order_item->product->contents }}
Gewicht: {{ $shopping_order_item->product->weight }} g
Points: {{ $shopping_order_item->product->points }}
{{ $shopping_order_item->qty }} {{ $shopping_order_item->getFormattedPrice() }} €

Zahlung
@if($isAdmin)@endif @php($count=0) @if($shopping_user->shopping_order) @foreach($shopping_user->shopping_order->shopping_payments as $shopping_payment) @if($isAdmin)@endif @if($isAdmin && $shopping_payment->payment_transactions) @php($ccount=0) @endif @endforeach @endif
# ZahlungsartReferenznummerGesamt Status Datum
{{++$count}} {{$shopping_payment->getPaymentType()}}{{$shopping_payment->reference}}{{$shopping_payment->getPaymentAmount()}} {!! \App\Services\Payment::getShoppingPaymentBadge($shopping_payment) !!} {{$shopping_payment->created_at->format("d.m.Y H:i")}}
{{$count}}.{{++$ccount}} @foreach($shopping_payment->payment_transactions as $payment_transaction) @endforeach
Request Status TX-Action Datum
{{$payment_transaction->request}} {{$payment_transaction->status}} {{$payment_transaction->txaction}} {{$payment_transaction->errormessage}} {{$payment_transaction->created_at->format("d.m.Y H:i")}}
@endif