Boundaries

@if(isset($boundaries) && (count($boundaryFilters) > 0 || count($boundaries) > 0))

Results ({{ count($boundaries) }})

@if(count($boundaries) === 0)

No boundaries found. Try adjusting your search criteria.

@else
@foreach($boundaries as $b)

{{ $b['name'] }}

Boundary Number: {{ $b['boundary_number'] }}

{{ $b['status'] ?? '—' }} {{ str_replace('_', ' ', $b['workflow_stage'] ?? 'published') }}

Type: {{ ucfirst($b['boundary_type'] ?? '—') }}

States: {{ $b['state_a'] ?? '—' }} ↔ {{ $b['state_b'] ?? '—' }}

@if(!empty($b['length_km']))

Length: {{ $b['length_km'] }} km

@endif @if(!empty($b['established_date']))

Established: {{ $b['established_date'] }}

@endif
View details
@endforeach
@endif
@endif