@php
$contactInfoSet = $column['value'] ?? data_get($entry, $column['name']);
if ($contactInfoSet == null) {
return;
}
@endphp
@if ($contactInfoSet->email)
{{ $contactInfoSet->email }}
@endif
@if ($contactInfoSet->telephone)
{{ $contactInfoSet->telephone }}
@endif
@if ($contactInfoSet->mobile)
{{ $contactInfoSet->mobile }}
@endif