{{-- Status & Business --}}
| {{ __('team.account') }}: |
@if($user->isActive())
{{ __('team.active') }}
@else
{{ __('team.not_active') }}
@endif
@if($user->payment_account)
{{ __('team.until') }}: {{ $user->getPaymentAccountDateFormat(false) }}
@endif
|
@if($user->payment_shop)
| {{ __('team.shop') }}: |
{{ __('team.until') }}: {{ $user->getPaymentShopDateFormat(false) }} |
@endif
@if($user->account->m_account)
| {{ __('team.ID') }}: |
{{ $user->account->m_account }} |
@endif
@if($user->user_level)
| {{ __('team.career_level') }}: |
{{ \App\Services\TranslationHelper::transUserLevelName($user->user_level->name) }} |
@endif
@if($user->user_sponsor && $user->user_sponsor->account)
| {{ __('team.sponsor') }}: |
{{ $user->user_sponsor->account->first_name }} {{ $user->user_sponsor->account->last_name }} | {{ $user->user_sponsor->email }} |
@endif
@if($user->last_login)
| {{ __('team.last_login') }}: |
{{ \Carbon\Carbon::parse($user->last_login)->format(\Util::formatDateTimeDB()) }} |
@endif
| {{ __('team.registered_at') }}: |
{{ $user->created_at ? $user->created_at->format(\Util::formatDateDB()) : '-' }} |
|
{{-- Stammdaten --}}
| {{ __('Company name') }}: |
{{ $user->account->company }} |
| {{ __('Salutation') }}: |
{{ \App\Services\HTMLHelper::getSalutationLang($user->account->salutation) }} |
| {{ __('First name') }}: |
{{ $user->account->first_name }} |
| {{ __('Last name') }}: |
{{ $user->account->last_name }} |
| {{ __('Street') }} / {{ __('House number') }}: |
{{ $user->account->address }} |
| {{ __('Flat Building optional') }}: |
{{ $user->account->address_2 }} |
| {{ __('Postcode') }}: |
{{ $user->account->zipcode }} |
| {{ __('City') }}: |
{{ $user->account->city }} |
| {{ __('Country') }}: |
{{ $user->account->country->getLocated() }} |
| {{ __('account.preferred_language') }}: |
{{ \App\Models\UserAccount::getAvailableLanguages()[$user->account->getLocale()] ?? $user->account->getLocale() }} |
| {{ __('Date of birth') }}: |
{{ $user->account->birthday }} |
| {{ __('Phone') }}: |
{{ $user->account->getPhoneFull() }} |
| {{ __('Mobile Phone') }}: |
{{ $user->account->getMobilFull() }} |
| {{ __('E-Mail') }}: |
{{ $user->email }} |
@if($user->account->tax_number)
| {{ __('account.tax_number') }}: |
{{ $user->account->tax_number }} |
@endif
@if($user->account->tax_identification_number)
| {{ __('account.VAT_ID_number') }}: |
{{ $user->account->tax_identification_number }} |
@endif
@if($user->account->same_as_billing)
| {{__('email.checkout_mail_same_address')}} |
@else
| {{ __('account.delivery_address') }} |
| {{ __('Company name') }}: |
{{ $user->account->shipping_company }} |
| {{ __('Salutation') }}: |
{{ \App\Services\HTMLHelper::getSalutationLang($user->account->shipping_salutation) }} |
| {{ __('First name') }}: |
{{ $user->account->shipping_firstname }} |
| {{ __('Last name') }}: |
{{ $user->account->shipping_lastname }} |
| {{ __('Street') }} / {{ __('House number') }}: |
{{ $user->account->shipping_address }} |
| {{ __('Flat Building optional') }}: |
{{ $user->account->shipping_address_2 }} |
| {{ __('Postcode') }}: |
{{ $user->account->shipping_zipcode }} |
| {{ __('City') }}: |
{{ $user->account->shipping_city }} |
| {{ __('Country') }}: |
{{ $user->account->shipping_country->getLocated() }} |
| {{ __('Phone') }}: |
{{ $user->account->getShippingPhoneFull() }} |
@endif