Current Status
@php
$colors = [
'new' => 'bg-blue-100 text-blue-700',
'contacted' => 'bg-amber-100 text-amber-700',
'matured' => 'bg-purple-100 text-purple-700',
'proposal' => 'bg-indigo-100 text-indigo-700',
'won' => 'bg-emerald-100 text-emerald-700',
'lost' => 'bg-gray-100 text-gray-500',
'disqualified' => 'bg-red-100 text-red-700',
];
@endphp
{{ ucfirst($lead->status) }}