@extends('layouts.default') @section('content')
Başvuru Tarihi: {{ $kyc->created_at->format('d.m.Y H:i') }}
Ad: | {{ $kyc->user->first_name }} |
---|---|
Soyad: | {{ $kyc->user->last_name }} |
İkinci Ad: | {{ $kyc->user->middle_name }} |
Doğum Tarihi: | {{ \Carbon\Carbon::parse($kyc->user->date_of_birth)->format('d.m.Y') }} |
Cinsiyet: | {{ ucfirst($kyc->user->gender) }} |
Uyruk: | {{ $kyc->user->nationality }} |
Telefon: | {{ $kyc->user->phone_number }} |
E-posta: | {{ $kyc->user->email }} |
E-posta Durumu: | @if($kyc->user->email_verified_at) Doğrulanmış @else Doğrulanmamış @endif |
Hesap Durumu: | @if($kyc->user->is_verified) Doğrulanmış @else Doğrulanma Bekliyor @endif |
Kayıt Tarihi: | {{ $kyc->user->created_at->format('d.m.Y H:i') }} |
İl: | {{ ucfirst($kyc->city) }} |
---|---|
İlçe: | {{ ucfirst($kyc->state) }} |
Adres: | {{ $kyc->street_address }} |
Posta Kodu: | {{ $kyc->postal_code }} |
Meslek: | {{ $kyc->occupation }} |
---|---|
İşveren: | {{ $kyc->employer_name ?: '-' }} |
Yıllık Gelir: | {{ number_format($kyc->annual_income, 2, ',', '.') }} TL |
Gelir Kaynağı: | @php $sources = [ 'salary' => 'Maaş', 'business' => 'İşletme Geliri', 'investment' => 'Yatırım Geliri', 'inheritance' => 'Miras', 'other' => 'Diğer' ]; @endphp {{ $sources[$kyc->source_of_funds] ?? $kyc->source_of_funds }} |