@php $statusIcon = fn (string $status) => match ($status) { 'success' => '', 'failed' => '', default => '', }; @endphp
{{ trim(($user->name ?? '') . ' ' . ($user->last_name ?? '')) ?: '—' }}
E-posta: {{ $user->email }}
Telefon: {{ $user->phone ?: '—' }}
Kayıt: {{ $user->created_at?->format('d.m.Y H:i') ?? '—' }}
Kaynak: {{ $user->provider ? ucfirst($user->provider) : 'E-posta/Şifre' }}
E-posta Doğrulama: @if ($user->email_verified_at) Doğrulandı @else Doğrulanmadı @endif
Telefon Doğrulama: @if ($user->phone_verified_at) Doğrulandı @else Doğrulanmadı @endif
@unless ($hasStructuredEvents)
Bu kullanıcı, olay takip sistemi kurulmadan önce kayıt olmuş. Aşağıda sadece yukarıdaki profil bilgileri ve (varsa) sunucu log dosyasından bulunan geçmiş kayıtlar gösteriliyor.
@endunless
@forelse ($timeline as $item)
{!! $statusIcon($item['status']) !!}
{{ $item['label'] }} {{ $item['time']->format('d.m.Y H:i:s') }}
@if ($item['message'])
{{ $item['message'] }}
@endif @if (!empty($item['metadata']))
@foreach ($item['metadata'] as $key => $value) @if ($value !== null && $value !== '' && !is_array($value)) {{ $key }}: {{ $value }} @endif @endforeach
@endif @if ($item['origin'] === 'log') log dosyasından @endif
@empty

Bu kullanıcı için hiçbir kayıt/doğrulama olayı bulunamadı.

@endforelse
@if (!$user->phone_verified_at && $user->phone)
@endif