@php $firstName = (string) ($firstName ?? 'there'); $businessName = (string) ($businessName ?? 'your business'); $periodLabel = (string) ($periodLabel ?? 'Setup update · '.now()->format('F Y')); $totalAppointments = (int) ($totalAppointments ?? 0); $invitesQueued = (int) ($invitesQueued ?? 0); $inviteLimit = (int) ($inviteLimit ?? 25); $replyLimit = (int) ($replyLimit ?? 5); $upgradeNote = (string) ($upgradeNote ?? 'all appointments covered — free plan'); $connectedProviderLabel = (string) ($connectedProviderLabel ?? 'Google Calendar connected'); $statusMessage = (string) ($statusMessage ?? ''); $ctaUrl = (string) ($ctaUrl ?? '#'); $unsubscribeUrl = (string) ($unsubscribeUrl ?? '#'); $appUrl = rtrim((string) config('app.url'), '/'); $bannerBg = $invitesQueued > 0 ? '#f0fdf4' : ($totalAppointments === 0 ? '#eff6ff' : '#fef3c7'); $bannerBorder = $invitesQueued > 0 ? '#bbf7d0' : ($totalAppointments === 0 ? '#bfdbfe' : '#fde68a'); $bannerColor = $invitesQueued > 0 ? '#166534' : ($totalAppointments === 0 ? '#1e40af' : '#92400e'); @endphp
@include('emails.partials.reply-reviews-brand-header')