HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/farmfun/reserveren.farmfun.be/resources/views/site/components/map.blade.php
<div class="c-location-map">
{{--    <img class="c-location-map__map" width="576" height="469" alt="belgium map" src="/img/map.svg" />--}}
    <img class="c-location-map__map" width="576" height="469" alt="NL/BE map" src="/img/locations/NLBEMap.svg" />

    <div class="c-location-map__interaction">
        @foreach($links->locations->items as $locationItem)
            @php
            @endphp
            @if(!empty($locationItem->lat_marker) && !empty($locationItem->lon_marker))

                <div class="c-location-map__item" style="--latitude: {{$locationItem->lat_marker}}; --longitude: {{$locationItem->lon_marker}};">

                    <div class="c-location-map__marker">
                        <img width="24" height="35" alt="map marker" src="/img/location--green.svg" />
                    </div>
                    <div class="c-location-map__tooltip">
                        {{ $locationItem->translation->name }}
                    </div>
                </div>

            @endif
        @endforeach
    </div>
</div>