@foreach($cards as $index => $cardData)
@if($cardData['logoBase64']) Logo @else
{{ strtoupper(substr($cardData['company']->name ?? 'C', 0, 2)) }}
@endif
{{ strtoupper($cardData['company']->name ?? 'COMPANY') }}
Kartu Identitas Karyawan
@if($cardData['avatarBase64']) Foto @else
{{ strtoupper(substr($cardData['user']->name ?? 'N', 0, 2)) }}
@endif
{{ $cardData['user']->name ?? 'Name' }}
{{ $cardData['user']->position ?? 'Jabatan' }}
{{ $cardData['user']->department ?? 'Departemen' }}
NIP: {{ $cardData['user']->employee_id ?? $cardData['user']->nip ?? '-' }}
QR
Scan Absensi
@if(($index + 1) % 8 == 0 && $index + 1 < count($cards))
@endif @endforeach