@props([ 'status' => '', ]) @php $status = strtolower((string) $status); $map = [ 'hadir' => ['bg' => 'bg-emerald-50', 'text' => 'text-emerald-800', 'ring' => 'ring-emerald-200', 'label' => 'Hadir'], 'sakit' => ['bg' => 'bg-amber-50', 'text' => 'text-amber-800', 'ring' => 'ring-amber-200', 'label' => 'Sakit'], 'izin' => ['bg' => 'bg-sky-50', 'text' => 'text-sky-800', 'ring' => 'ring-sky-200', 'label' => 'Izin'], 'alpha' => ['bg' => 'bg-rose-50', 'text' => 'text-rose-800', 'ring' => 'ring-rose-200', 'label' => 'Alpha'], 'libur' => ['bg' => 'bg-slate-50', 'text' => 'text-slate-700', 'ring' => 'ring-slate-200', 'label' => 'Libur'], '' => ['bg' => 'bg-slate-50', 'text' => 'text-slate-700', 'ring' => 'ring-slate-200', 'label' => '-'], ]; $cfg = $map[$status] ?? $map['']; @endphp merge(['class' => "inline-flex items-center rounded-full px-2.5 py-1 text-xs font-semibold ring-1 {$cfg['bg']} {$cfg['text']} {$cfg['ring']}"]) }}> {{ $cfg['label'] }}