@include('admin.components.apphead')
@include('admin.components.aside')
@include('admin.components.nav')

Kullanıcı Detayları

Kullanıcı detaylarını görüntüleyin.

Lokasyonlar
    @forelse ($usersLocationsList as $location)
  • {{ $location['location_name'] }}
    Plan: {{ $location['plan_name'] }}
  • @empty
  • Henüz bir lokasyon yok
  • @endforelse
Varsayılan Sevkiyat Adresi
    @if ($defaultShipmentAddress)
  • {{ $defaultShipmentAddress->full_name }}
    {{ $defaultShipmentAddress->full_address }}
    {{ $defaultShipmentAddress->city }}, {{ $defaultShipmentAddress->state }}
    Posta Kodu: {{ $defaultShipmentAddress->zip_code }}
    Telefon: {{ $defaultShipmentAddress->phone }}
  • @else
  • Varsayılan adres bulunamadı
  • @endif
Fatura Adresi
  • {{ $billingAddressData['firstName'] ?? '' }} {{ $billingAddressData['lastName'] ?? '' }}
    {{ $billingAddressData['address'] ?? '' }}
    {{ $billingAddressData['state'] ?? '' }}
    Posta Kodu: {{ $billingAddressData['zipCode'] ?? '' }}
    Telefon: {{ $billingAddressData['phoneNumber'] ?? '' }}
    E-posta: {{ $billingAddressData['email'] ?? '' }}
    Kuruluş: {{ $billingAddressData['organization'] ?? '' }}
    Ülke: {{ $billingAddressData['country'] ?? '' }}
    Dil: {{ $billingAddressData['language'] ?? '' }}
    Zaman Dilimi: {{ $billingAddressData['timeZones'] ?? '' }}
    Para Birimi: {{ $billingAddressData['currency'] ?? '' }}
@include('admin.components.appjs')