@forelse ($profiles as $profile)
@php
$count = $bidLeads[$profile->id] ?? 0;
if ($count > 10) {
$bgClass = 'bg-purple-600 text-white';
} elseif ($count > 5) {
$bgClass = 'bg-pink-400 text-gray-900';
} elseif ($count > 0) {
$bgClass = 'bg-yellow-300 text-gray-800';
} else {
$bgClass = 'bg-gray-200 text-gray-600';
}
@endphp
{{ $profile->name ?? 'N/A' }}
{{ $count }}
@empty
No bids found.
@endforelse