|
{{ $accountData->name ?: 'N/A' }}
{{ $accountData->business_email ?: 'N/A' }}
|
{{ $accountData->user?->name ?? 'N/A' }}
{{ '@' . ($accountData->user?->username ?? '') }} {{ $accountData->user?->email ? 'ยท ' . $accountData->user->email : '' }}
|
{{ $accountData->country ?: '' }} {{ $accountData->city ? ', ' . $accountData->city : '' }}
|
{{ $accountData->updated_at?->getIso() ?? 'N/A' }}
|
@php
$statusLabel = 'Pending';
$statusClass = 'text-lab-tr';
if ($accountData->is_reviewed && $accountData->verified) {
$statusLabel = 'Approved';
$statusClass = 'text-green-900';
}
else if ($accountData->is_reviewed && (! $accountData->verified)) {
$statusLabel = 'Rejected';
$statusClass = 'text-red-900';
}
@endphp
{{ $statusLabel }}
|
|