@php $businessName = (string) ($businessName ?? 'Your business'); $reportMeta = (string) ($reportMeta ?? 'Monthly report'); $rating = $rating ?? null; $reviewCount = $reviewCount ?? null; $reviewDelta = (int) ($reviewDelta ?? 0); $reviewDeltaColor = (string) ($reviewDeltaColor ?? '#9ca3af'); $invitesUsed = (int) ($invitesUsed ?? 0); $repliesUsed = (int) ($repliesUsed ?? 0); $ctaUrl = (string) ($ctaUrl ?? '#'); $ctaLabel = (string) ($ctaLabel ?? 'View report'); $ctaNote = (string) ($ctaNote ?? ''); $unsubscribeUrl = (string) ($unsubscribeUrl ?? '#'); $insightHtml = (string) ($insightHtml ?? ''); $ratingDisplay = is_numeric($rating) ? number_format((float) $rating, 1) : '—'; $reviewCountDisplay = is_numeric($reviewCount) ? number_format((int) $reviewCount) : '0'; $deltaPrefix = $reviewDelta > 0 ? '+' : ''; $deltaWeight = (string) ($deltaWeight ?? '400'); @endphp