@php $layoutComponent = ($useAdminLayout ?? false) ? 'test-admin-layout' : 'app-layout'; @endphp

Calendly Invite-Reply Sequence Test

Preview and manually send all 5 Calendly funnel emails for QA

@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif @if($leadNotFound ?? false)
Lead #{{ $requestedLeadId }} not found.
@endif @php $leadQuery = ($input['lead_id'] ?? 0) > 0 ? ['lead_id' => $input['lead_id']] : []; @endphp {{-- Lead context form --}}

Lead context

Open /admin/test-calendly-sequences?lead_id=478 or /test-calendly-sequences?lead_id=478 — pid, business, email, and other fields load automatically from the lead.

Advanced overrides (optional — for synthetic testing without a DB row)
{{-- Resolved lead card --}}

Resolved context

@if($context['lead'] || $context['lead_email'] !== '' || $context['pid'] !== '')
Lead
@if($context['lead'] && $context['lead']->exists) #{{ $context['lead']->id }} @if($context['lead']->customer_name) — {{ $context['lead']->customer_name }} @endif @else Synthetic / query only @endif
Business
{{ $input['b'] ?: '—' }}
Email
{{ $context['lead_email'] ?: '—' }}
Place ID
{{ $context['pid'] ?: '—' }}
Cold sequence logs
{{ $context['scheduled_cold_count'] }}
@if($context['lander_url']) @endif
@else

Enter a lead ID or email + pid, then click Load lead.

@endif

Quick links

Your email (me):
{{ $user->email }}
{{-- Sequence table --}}

8-email sequence

Preview renders HTML in browser; send uses recipient chooser per row

@php $lastGroup = null; @endphp @foreach($catalog as $row) @if($lastGroup !== $row['group']) @php $lastGroup = $row['group']; @endphp @endif @endforeach
# Name Trigger Delay CTA Repeat Preview Send
{{ $row['group'] }}
{{ $row['num'] }} {{ $row['name'] }} {{ $row['trigger'] }} {{ $row['delay'] }} {{ $row['cta'] }} {{ $row['repeat'] }} Preview
@csrf