¿Que hay cerca?

@foreach ($cercania ?? [] as $punto) @php $lugares = $punto->lugares ?? []; $tieneLugares = count($lugares) > 0; @endphp @if ($tieneLugares)
@if (!empty($punto->icono)) @svg('local-' . $punto->icono, 'h-18 sm:h-20 fill-current') @else {{ $punto->name ?? '' }} @endif

{{ $punto->name }}

    @foreach ($lugares as $lugar)
  • @if (!empty($lugar['enlace'])) {{ $lugar['name'] ?? '' }} @else {{ $lugar['name'] ?? '' }} @endif
  • @endforeach
@else
@if (!empty($punto->icono)) @svg('local-' . $punto->icono, 'h-18 sm:h-20 fill-current') @else {{ $punto->name ?? '' }} @endif

{{ $punto->name }}

@endif @endforeach