@php $name = trim((string) ($name ?? '')); $firstName = $name !== '' ? explode(' ', $name)[0] : 'there'; $businessName = (string) ($businessName ?? 'Your business'); $city = (string) ($city ?? 'your area'); $businessRating = $businessRating ?? null; $competitorName = (string) ($competitorName ?? 'Top competitor'); $competitorRating = $competitorRating ?? null; $competitorReviews = $competitorReviews ?? null; $projectedReviews = $projectedReviews ?? '1,362'; $ctaUrl = (string) ($ctaUrl ?? '#'); $unsubscribeUrl = (string) ($unsubscribeUrl ?? '#'); $logoUrl = (string) ($logoUrl ?? ''); $fmtRating = function ($r) { if ($r === null || $r === '') return '—'; return is_numeric($r) ? number_format((float) $r, 1) : (string) $r; }; $fmtInt = function ($n) { if ($n === null || $n === '') return '—'; if (is_numeric($n)) return number_format((int) $n); return (string) $n; }; @endphp