@extends('layouts.app') @section('title', 'Properties Map') @section('page-title', 'Properties Map') @push('styles') @endpush @section('content')

{{ count($mapProperties) }} published {{ Str::plural('property', count($mapProperties)) }} with GPS coordinates

List View
@if(! config('services.google.maps_key'))
Google Maps API key not configured. Set GOOGLE_MAPS_API_KEY in your .env file and clear the config cache.
@elseif(count($mapProperties) === 0)

No published properties have GPS coordinates yet.

Edit a property and pin it on the map to see it here.

@else
@endif @endsection @push('scripts') @if(config('services.google.maps_key') && count($mapProperties) > 0) @endif @endpush