{{-- Back navigation --}} {{-- Contact header --}}
{{ $contact->initials }}

{{ $contact->full_name }}

{{ $contact->email }}

{{-- Contact details + Timeline side-by-side --}}
{{-- Contact info --}}

{{ __('Details') }}

@if($contact->phone)

{{ __('Phone') }}

{{ $contact->phone }}

@endif @if($contact->company)

{{ __('Company') }}

{{ $contact->company }}

@endif @if($contact->job_title)

{{ __('Job Title') }}

{{ $contact->job_title }}

@endif @if($contact->city || $contact->country)

{{ __('Location') }}

{{ implode(', ', array_filter([$contact->city, $contact->country])) }}

@endif @if($contact->timezone)

{{ __('Timezone') }}

{{ $contact->timezone }}

@endif

{{ __('Engagement Score') }}

{{ $contact->lead_score ?? 0 }}

{{ __('Status') }}

($contact->status ?? 'active') === 'active', 'bg-danger/15 text-danger' => ($contact->status ?? 'active') === 'unsubscribed', ])>{{ ucfirst($contact->status ?? 'active') }}
@if($contact->last_contacted_at)

{{ __('Last Contacted') }}

{{ $contact->last_contacted_at->diffForHumans() }}

@endif
{{-- Tags --}} @if($contact->tags->count() > 0)

{{ __('Tags') }}

@foreach($contact->tags as $tag) {{ $tag->name }} @endforeach
@endif
{{-- Activity timeline --}}