@php $address = $contactInfos->where('contact_type', 'address')->first(); $phone = $contactInfos->where('contact_type', 'phone')->first(); $email = $contactInfos->where('contact_type', 'email')->first(); @endphp @if($address) {{ $address->value }} @endif @if($phone) {{ $phone->value }} @endif @if($email) {{ $email->value }} @endif