Müşteriler

Müşteri Detayı

Adı Soyadı: {{ $user->name }} {{ $user->surname }}


E-Posta Adresi: {{ $user->email }}


Telefon Numarası: @if($user->customer->phone != ""){{ $user->customer->phone }}@else Belirtilmedi @endif


Fax Numarası: @if($user->customer->fax != ""){{ $user->customer->fax }}@else Belirtilmedi @endif


T.C. Kimlik No: @if($user->customer->identity_number != ""){{ $user->customer->identity_number }}@else Belirtilmedi @endif


Bulunduğu Ülke: @if($user->customer->country_id != "") {{ $user->customer->country->name }} @else Belirtilmedi @endif


Bulunduğu Şehir: @if($user->customer->city_id != "") {{ $user->customer->city->name }} @else Belirtilmedi @endif


Cinsiyet: @if($user->customer->gender != 0) @if($user->customer->gender == 1) Bay @else Bayan @endif @else Belirtilmedi @endif


Doğum Günü: @if($user->customer->birthday != "0000-00-00"){{ timeTR($user->customer->birthday) }}@else Belirtilmedi @endif


E-Posta Üyeliği: @if($user->customer->subscription == 1) Var @else Yok @endif


Kayıt Tarihi: {{ timedetTR($user->created_at) }}


Son Güncelleme: {{ timedetTR($user->updated_at) }}



@if(count($user->caddress) > 0) @foreach($user->caddress as $address)

{{ $address->title }} Detay için tıklayınız


@endforeach @else Seçilen Müşteri Henüz Adres Eklemedi! @endif

@if(count($user->corders) > 0) @foreach($user->corders as $order)

Sipariş No: {{ $order->ordernumber }} Detay için tıklayınız


@endforeach @else Seçilen Müşteri Henüz Ürün Siparişi Vermedi! @endif