@extends('layouts.app') @section('content')

{{ $contact->name }}

{{ $contact->company ?? 'No company' }} · {{ ucfirst($contact->type ?? 'N/A') }}

Contact Information

Email
{{ $contact->email ?? '-' }}
Phone
{{ $contact->phone ?? '-' }}
Address
{{ $contact->address ?? '-' }}
Source
{{ $contact->source ?? '-' }}
Status
{{ ucfirst($contact->status ?? 'active') }}
@if($contact->notes)
Notes
{{ $contact->notes }}
@endif

Deals

@forelse($contact->deals ?? [] as $deal)

{{ $deal->title }}

{{ ucfirst($deal->stage) }}

{{ $currentBusiness->currency_symbol }}{{ number_format($deal->value, 2) }}
@empty

No deals found.

@endforelse

Recent Activities

@forelse($contact->activities ?? [] as $activity)

{{ $activity->title }}

{{ $activity->created_at->diffForHumans() }}

@empty

No activities recorded.

@endforelse
@endsection