@extends('layouts.auth') @section('title', 'Check coverage') @section('content')
Check whether we can connect your address, and we will follow up with availability and pricing.
@include('partials.flash') @if (session('coverage_result')) @php $cr = session('coverage_result'); @endphpCovered Good news — we can serve this address.
Matched zone {{ $cr['zone_name'] ?? '—' }} @if ($cr['zone_tech'])({{ title_case_words($cr['zone_tech']) }})@endif at {{ (int) $cr['confidence'] }}% confidence. A sales consultant will contact you on {{ $cr['phone'] }}.
@elseif ($cr['result'] === 'planned')Coming soon This address is in a planned build area.
{{ $cr['distance_m'] !== null ? number_format((float) $cr['distance_m']).' m from ' : 'Near ' }} {{ $cr['zone_name'] ?? 'the nearest zone' }}. Register your interest and we will notify you when it goes live.
@elseNot covered yet We do not reach this address today.
@if ($cr['zone_name']) The nearest zone is {{ $cr['zone_name'] }}, {{ number_format((float) $cr['distance_m'] / 1000, 1) }} km away. @endif We have logged your enquiry in case coverage expands.
@endif @if ($cr['notes']){{ $cr['notes'] }}
@endifAlready a customer? Sign in
@endsection