@props(['status']) @php $map = [ 'active' => 'success', 'inactive' => 'secondary', 'pending' => 'warning', 'awaiting_hr' => 'info', 'approved' => 'success', 'rejected' => 'danger', 'cancelled' => 'secondary', 'present' => 'success', 'absent' => 'danger', 'late' => 'warning', 'on_leave' => 'info', 'half_day' => 'info', 'paid' => 'success', 'draft' => 'secondary', ]; $key = strtolower((string) $status); $variant = $map[$key] ?? 'secondary'; $label = ucwords(str_replace('_', ' ', (string) $status)); @endphp merge(['class' => "badge text-bg-{$variant}"]) }}>{{ $label }}