KYC Slot Details
Partner Information
Name {{ $kycSlot->user->name ?? '-' }}
Email {{ $kycSlot->user->email ?? '-' }}
Phone {{ ($kycSlot->user->phone_country_code ?? '') . ' ' . ($kycSlot->user->phone_no ?? '-') }}
KYC Status {!! \App\Helpers\WidgetHelper::statusBadge($kycSlot->user->kyc_status ?? 'not_started') !!}
Meeting Slot Information
Slot Date & Time @if($kycSlot->slot_date) {{ \Carbon\Carbon::parse($kycSlot->slot_date)->format('d M Y h:i A') }} @else - @endif
Status {!! \App\Helpers\WidgetHelper::statusBadge($kycSlot->status ?? '') !!}
Meeting Link @if($kycSlot->meeting) {{ $kycSlot->meeting }} @else No meeting link set @endif
@if($kycSlot->remark)
Remark / Reason
{{ $kycSlot->remark }}
@endif
Assigned Admin
@if($kycSlot->assignedAdmin)
{{ $kycSlot->assignedAdmin->name ?? '-' }}
{{ $kycSlot->assignedAdmin->email ?? '-' }} @else No admin assigned to this slot yet. @endif
Activity & Audit Logs
@if(!empty($kycSlot->meta))
@foreach($kycSlot->meta as $log)
{{ $log['action'] ?? '-' }} {{ !empty($log['date']) ? \Carbon\Carbon::parse($log['date'])->format('d M Y h:i A') : '-' }}
@if(!empty($log['action_by']))
By: {{ $log['action_by']['name'] ?? '' }} ({{ $log['action_by']['email'] ?? '' }})
@endif
@endforeach
@else
No activity logs recorded.
@endif