@if ($_enableGodParents ?? false)

Padrinos

@foreach ($godparents as $godparent)
@php $imageUrl = null; if(array_key_exists('godparentImage', $godparent)){ $imageUrl = Storage::url($godparent['godparentImage']); } @endphp
{{ array_key_exists('godparentName', $godparent) ? $godparent['godparentName'] : null }}

{{ array_key_exists('godparentRelationship', $godparent) ? $godparent['godparentRelationship'] : null }}

@endforeach
@endif @if ($_enableWitnesses ?? false)

Testigos

@foreach ($witnesses as $witness)
@php $imageUrl = null; if(array_key_exists('witnessImage', $witness)){ $imageUrl = Storage::url($witness['witnessImage']); } @endphp
{{ array_key_exists('witnessName', $witness) ? $witness['witnessName'] : null }}

{{ array_key_exists('witnessRelationship', $witness) ? $witness['witnessRelationship'] : null }}

@endforeach
@endif