20-02-2026
This commit is contained in:
parent
a8b395e20d
commit
a00c42e770
252 changed files with 28785 additions and 8907 deletions
|
|
@ -11,6 +11,56 @@
|
|||
<div class="modal-body modal-body-overflow">
|
||||
<table class="table user-view-table m-0">
|
||||
<tbody>
|
||||
{{-- Status & Business --}}
|
||||
<tr>
|
||||
<td>{{ __('team.account') }}:</td>
|
||||
<td>
|
||||
@if($user->isActive())
|
||||
<span class="badge badge-outline-success">{{ __('team.active') }}</span>
|
||||
@else
|
||||
<span class="badge badge-outline-danger">{{ __('team.not_active') }}</span>
|
||||
@endif
|
||||
@if($user->payment_account)
|
||||
{{ __('team.until') }}: {{ $user->getPaymentAccountDateFormat(false) }}
|
||||
@endif
|
||||
</td>
|
||||
</tr>
|
||||
@if($user->payment_shop)
|
||||
<tr>
|
||||
<td>{{ __('team.shop') }}:</td>
|
||||
<td>{{ __('team.until') }}: {{ $user->getPaymentShopDateFormat(false) }}</td>
|
||||
</tr>
|
||||
@endif
|
||||
@if($user->account->m_account)
|
||||
<tr>
|
||||
<td>{{ __('team.ID') }}:</td>
|
||||
<td>{{ $user->account->m_account }}</td>
|
||||
</tr>
|
||||
@endif
|
||||
@if($user->user_level)
|
||||
<tr>
|
||||
<td>{{ __('team.career_level') }}:</td>
|
||||
<td>{{ \App\Services\TranslationHelper::transUserLevelName($user->user_level->name) }}</td>
|
||||
</tr>
|
||||
@endif
|
||||
@if($user->user_sponsor && $user->user_sponsor->account)
|
||||
<tr>
|
||||
<td>{{ __('team.sponsor') }}:</td>
|
||||
<td>{{ $user->user_sponsor->account->first_name }} {{ $user->user_sponsor->account->last_name }} | {{ $user->user_sponsor->email }}</td>
|
||||
</tr>
|
||||
@endif
|
||||
@if($user->last_login)
|
||||
<tr>
|
||||
<td>{{ __('team.last_login') }}:</td>
|
||||
<td>{{ \Carbon\Carbon::parse($user->last_login)->format(\Util::formatDateTimeDB()) }}</td>
|
||||
</tr>
|
||||
@endif
|
||||
<tr>
|
||||
<td>{{ __('team.registered_at') }}:</td>
|
||||
<td>{{ $user->created_at ? $user->created_at->format(\Util::formatDateDB()) : '-' }}</td>
|
||||
</tr>
|
||||
<tr><td colspan="2"></td></tr>
|
||||
{{-- Stammdaten --}}
|
||||
<tr>
|
||||
<td>{{ __('Company name') }}:</td>
|
||||
<td> {{ $user->account->company }} </td>
|
||||
|
|
@ -47,6 +97,10 @@
|
|||
<td>{{ __('Country') }}:</td>
|
||||
<td>{{ $user->account->country->getLocated() }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>{{ __('account.preferred_language') }}:</td>
|
||||
<td>{{ \App\Models\UserAccount::getAvailableLanguages()[$user->account->getLocale()] ?? $user->account->getLocale() }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>{{ __('Date of birth') }}:</td>
|
||||
<td>{{ $user->account->birthday }}</td>
|
||||
|
|
@ -63,6 +117,18 @@
|
|||
<td>{{ __('E-Mail') }}:</td>
|
||||
<td>{{ $user->email }}</td>
|
||||
</tr>
|
||||
@if($user->account->tax_number)
|
||||
<tr>
|
||||
<td>{{ __('account.tax_number') }}:</td>
|
||||
<td>{{ $user->account->tax_number }}</td>
|
||||
</tr>
|
||||
@endif
|
||||
@if($user->account->tax_identification_number)
|
||||
<tr>
|
||||
<td>{{ __('account.VAT_ID_number') }}:</td>
|
||||
<td>{{ $user->account->tax_identification_number }}</td>
|
||||
</tr>
|
||||
@endif
|
||||
<tr>
|
||||
</tr>
|
||||
@if($user->account->same_as_billing)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue