@php use App\Services\LeadSimulationService; $leadScore = data_get($row, 'client_profile.lead_score'); if ($leadScore === null) { // No score calculated yet $badgeColor = 'secondary'; $badgeLabel = '-'; $tooltip = __('No feasibility analysis'); } else { $leadScore = LeadSimulationService::calculateScoreFromProductCount($leadScore); $badgeColor = LeadSimulationService::getScoreBadgeColor($leadScore); $badgeLabel = LeadSimulationService::getScoreBadgeLabel($leadScore); $tooltip = __('Feasibility score: :score/100', ['score' => $leadScore]); } @endphp @if($leadScore !== null)