@php
$iconConfig = match($item->tipe) {
'lembur' => ['bg' => 'bg-amber-100', 'text' => 'text-amber-600', 'icon' => '
'],
'presensi' => ['bg' => 'bg-green-100', 'text' => 'text-green-600', 'icon' => '
'],
'pengumuman' => ['bg' => 'bg-blue-100', 'text' => 'text-blue-600', 'icon' => '
'],
'surat_izin', 'izin' => ['bg' => 'bg-purple-100', 'text' => 'text-purple-600', 'icon' => '
'],
'poin' => ['bg' => 'bg-rose-100', 'text' => 'text-rose-600', 'icon' => '
'],
default => ['bg' => 'bg-slate-100', 'text' => 'text-slate-600', 'icon' => '
'],
};
@endphp