@php $bizName = trim($insight->name ?? 'Your Business'); $monthYear = optional($snapshot?->created_at)->format('F Y') ?? now()->format('F Y'); $town = trim((string) ($insight->town ?? '')); $region = trim((string) ($insight->region ?? '')); $area = $town !== '' ? $town : ($region !== '' ? $region : 'your area'); $contactName = trim((string) ($insight->contact_name ?? '')); $hasManager = $contactName !== ''; $category = trim((string) ($insight->category1 ?? $insight->category2 ?? 'Local businesses')); $rowsCollection = collect($rows ?? []); $topRows = $rowsCollection ->sortByDesc(fn($r) => (float) ($r['traffic_value'] ?? 0)) ->take(4) ->values(); $hookKeyword = (string) ($topRows->first()['keyword'] ?? ($bizName . ' ' . $area)); $positionNumber = is_numeric($stats['avg_position'] ?? null) ? (int) max(1, round((float) $stats['avg_position'])) : 9; $positionBadge = $positionNumber <= 3 ? 'Top 3 visibility' : 'Invisible to buyers'; $totalSearches = (int) $rowsCollection->sum(function ($r) { $v = $r['search_volume'] ?? $r['monthly_searches'] ?? 0; return is_numeric($v) ? (int) $v : 0; }); if ($totalSearches <= 0) { $totalSearches = 3300; } $top3SharePct = 70; $top3Searches = (int) round($totalSearches * ($top3SharePct / 100)); $keywordsCount = (int) $rowsCollection->filter(fn($r) => !empty($r['keyword']))->count(); if ($keywordsCount < 0) { $keywordsCount = 0; } $placeId = $insight->place_id ?? null; $onboardingUrl = route('onboarding', array_filter([ 'source' => 'top3search', 'pid' => $placeId, 'e' => $insight->email ?? null, 'n' => $insight->contact_name ?? null, 'c' => $insight->name ?? null, 'step_id' => (int) ($step->id ?? 0) ?: null, ])); $unsubscribeUrl = url('unsubscribe?email=' . urlencode($insight->email ?? '') . '&source=top3search-followup-day3'); @endphp
 
Great news — your {{ $area }} Top 3 spot is now available to test
Fewer than 1% of businesses ever reach Top 3. Finding out if you can is free.
Your position today
#{{ $positionNumber }}
{{ $positionBadge }}
Top 3 captures
~{{ $top3SharePct }}%
of all local searches
{{ $area }} · {{ $category }} · 400+ businesses competing
Very high
Searches
{{ number_format($totalSearches) }}
Top 3 share
~{{ number_format($top3Searches) }}
Your keywords
{{ number_format($keywordsCount) }}
If a customer searches "{{ $hookKeyword }}"… what's that worth?
@forelse($topRows as $row) @php $k = (string) ($row['keyword'] ?? ''); $pos = $row['position'] ?? null; $posText = $pos !== null && is_numeric($pos) ? (int) $pos : '20+'; $searches = (int) ($row['search_volume'] ?? $row['monthly_searches'] ?? 0); $val = (float) ($row['traffic_value'] ?? 0); @endphp @empty @endforelse
Keyword Position Searches Value /mo
{{ $k !== '' ? $k : '—' }} {{ $posText }} {{ number_format(max(0, $searches)) }} £{{ number_format((int) round($val)) }}
No keyword rows yet. Your report will populate shortly.
Full 12-keyword report provided after activation.
Our commitment to you
Free
3-day test
no card needed
72hrs
to show results
or you pay nothing
1
business per area
exclusively yours
Top 3 isn't achievable for every business — that's what makes it valuable
{{ $area }} is a highly competitive area — fewer than 1% of businesses reach Top 3. We'll know within 72 hours if it's achievable for you.
Connect Google & Start My Test
Free 3-day test  ·  No card required
Cancel anytime
Unsubscribe
@include('emails.partials.open-pixel')