@extends('layouts.dashboard') @section('title', 'Towns & service area') @section('content')

Towns & service area

Add town
@foreach ($towns as $town) @endforeach
Name Area Postcode Coordinates Active
{{ $town->name }} {{ $town->area }} {{ $town->postcode }} @if ($town->latitude === null || $town->longitude === null) no coordinates — falls back to town-list distance @else {{ $town->latitude }}, {{ $town->longitude }} @endif {{ $town->active ? 'Yes' : 'No' }} Edit
@endsection