{{__('app.detail')}}
{{ $contact->list->name }}
{{ $contact->email }}
{{ $contact->is_active ? __('app.yes') : __('app.no') }}
{{ $contact->is_unsubscribed ? __('app.yes') : __('app.no') }}
{{ $contact->is_confirmed ? __('app.yes') : __('app.no') }}
{{ $contact->is_verified ? __('app.yes') : __('app.no') }}
{{ $contact->is_bounced ? __('app.yes') : __('app.no') }}
{{ ucfirst($contact->source) }}
{{ \App\Http\Helper\Helper::datetimeDisplay($contact->created_at) }}
{{ __('app.custom_fields') }}
@forelse($contact->customFields as $custom_field)
{{ str_replace('||', ', ', $custom_field->pivot->data) }}
@empty @endforelse