{{ __('Location') }}
@if (theme_option('real_estate_show_map_on_single_detail_page', 'yes') === 'yes')
@if ($property->latitude && $property->longitude)
@else
@endif
@endif
@if ($locationOnMap = ($property->location ?: $property->short_address))
@php
$mapUrl = 'https://www.google.com/maps/search/' . urlencode($locationOnMap);
if ($property->latitude && $property->longitude) {
$mapUrl = 'https://maps.google.com/?q=' . $property->latitude . ',' . $property->longitude;
}
@endphp
@endif