@php
$initialMarkers = [];
// Loop through each property and add to the array if lat and lon are not null
foreach ($properties as $property_item) {
if (!is_null($property_item->lat) && !is_null($property_item->lon)) {
$initialMarkers[] = [
'position' => [
'lat' => $property_item->lat,
'lng' => $property_item->lon,
],
'draggable' => false,
];
}
}
@endphp