@if($customer->photo)
 }})
@else
{{ mb_substr($customer->first_name, 0, 1) }}{{ mb_substr($customer->last_name, 0, 1) }}
@endif
{{ $customer->first_name }} {{ $customer->last_name }}
{{ $customer->customer_code }}
@if($customer->height)
Boy
{{ $customer->height }} cm
@endif
@if($customer->weight)
Kilo
{{ $customer->weight }} kg
@endif
@if($customer->shoe_size)
Ayakkabı
{{ $customer->shoe_size }}
@endif
@if($customer->gender)
Cinsiyet
{{ $customer->gender == 'male' ? 'Erkek' : 'Kadın' }}
@endif
İletişim & Detaylar
@if($customer->birth_date)
Doğum Tarihi
{{ $customer->birth_date->translatedFormat('d F Y') }}
@endif
@if($customer->wedding_anniversary)
Evlilik Yıldönümü
{{ $customer->wedding_anniversary->translatedFormat('d F Y') }}
@endif
@if($customer->address)
Adres
{{ $customer->address }}
@endif
Müşteri Tipi
{{ $customer->type === 'corporate' ? __('customers.corporate') : __('customers.individual') }}
@if($customer->type === 'corporate')
@if($customer->tax_office)
Vergi Dairesi
{{ $customer->tax_office }}
@endif
@if($customer->tax_number)
Vergi Numarası
{{ $customer->tax_number }}
@endif
@else
@if($customer->tckimlik)
T.C. Kimlik No
{{ $customer->tckimlik }}
@endif
@endif