@php($memberMode = auth('admin')->user()?->user_type === 'member') @if($memberMode) @endif
{{-- TOP STATS --}}

28

Emails Sent

12

Appointments

₹45K

Total Revenue

08

Connected Contacts

03

Invoices

{{-- PROFILE --}}
{{-- LEFT --}}

{{ ucfirst($contact->first_name) }} {{ ucfirst($contact->middle_name) }} {{ ucfirst($contact->last_name) }}

{{ $contact->contactType?->title ?: 'CRM Contact' }}

{{ $contact->contactPhase?->title ?: 'Active Contact' }}
Edit Profile @if($contact->phone1) Call Contact @endif
{{-- RIGHT --}}

Contact Profile Overview

Complete CRM contact information and membership details.

{{-- LEFT INFO --}}
  • Contact ID {{ $contact->id }}
  • First Name {{ $contact->first_name ?: '-' }}
  • Middle Name {{ $contact->middle_name ?: '-' }}
  • Last Name {{ $contact->last_name ?: '-' }}
  • Gender {{ ucfirst($contact->gender) ?: '-' }}
  • Date Of Birth {{ $contact->date_of_birth ? date('d M Y',strtotime($contact->date_of_birth)) : '-' }}
  • Age Group {{ $contact->age_group ?: '-' }}
  • {{ !empty($contact->phone1_label) ? $contact->phone1_label.' Phone' : 'Phone 1' }} {{ $contact->phone1 ?: '-' }}
  • {{ !empty($contact->phone2_label) ? $contact->phone2_label.' Phone' : 'Phone 2' }} {{ $contact->phone2 ?: '-' }}
  • Contact Type {{ $contact->contactType?->title ?: '-' }}
  • Contact Phase {{ $contact->contactPhase?->title ?: '-' }}
{{-- RIGHT INFO --}}
  • Address Line 1 {{ $contact->address1 ?: '-' }}
  • Address Line 2 {{ $contact->address2 ?: '-' }}
  • City {{ $contact->city ?: '-' }}
  • State {{ $contact->state ?: '-' }}
  • ZIP Code {{ $contact->zip ?: '-' }}
  • Mother Name {{ $contact->mother_name ?: '-' }}
  • Father Name {{ $contact->father_name ?: '-' }}
  • Emergency Contact Name {{ $contact->emergency_contact_name ?: '-' }}
  • Emergency Contact Phone {{ $contact->emergency_contact_phone ?: '-' }}
  • Marketing Source {{ $contact->marketingSource?->title ?: '-' }}
  • Marketing Detail {{ $contact->marketing_source_detail ?: '-' }}
  • @if($contact->location_id)
  • Location ID {{ $contact->location_id ?: '-' }}
  • @endif
  • Created At {{ $contact->created_at ? $contact->created_at->format('d M Y h:i A') : '-' }}
{{-- TAGS --}}
Assigned Tags
@if($contact->tags->count())
@foreach($contact->tags as $tag) {{ $tag->title }} @endforeach
@else No tags assigned. @endif
{{-- ADDITIONAL INFO --}}
Additional Information
{!! nl2br(e($contact->additional_info ?: 'No additional information available.')) !!}