@props(['status']) @php $map = [ 'NA' => ['class' => 'bg-secondary text-white', 'label' => 'Not allotted yet / left'], 'P' => ['class' => 'bg-success text-white', 'label' => 'Present'], 'L' => ['class' => 'bg-warning text-dark', 'label' => 'Leave'], 'A' => ['class' => 'bg-danger text-white', 'label' => 'Absent'], ]; $entry = $map[$status] ?? ['class' => 'bg-light text-dark', 'label' => $status]; @endphp merge(['class' => "badge {$entry['class']} px-2 py-1", 'title' => $entry['label']]) }}> {{ $status }}