@foreach($clusters ?? [] as $groupId => $cluster)
@php
$filePath = "{$charityOrg->slug}/map/{$groupId}.png";
$fileExists = Storage::disk('charityOrg')->exists($filePath);
@endphp
@if(!$fileExists) @continue @endif
@foreach($cluster ?? [] as $i => $pin)
@if($loop->index >= 30) @break @endif
-
|
@if($pin->isBusinessAddress())
{{ $pin->name }},
{{ $pin->formatted_address }}
|
@else
{!! $pin->pin_location !!}
|
@endif
@endforeach