Lead Details

View lead information

{{ $lead->name }}

{{ $lead->company }}

@if($lead->status === 'hot') Hot Lead @elseif($lead->status === 'warm') Warm Lead @elseif($lead->status === 'cold') Cold Lead @elseif($lead->status === 'converted') Converted @else {{ ucfirst($lead->status) }} @endif

Contact Information

Phone

{{ $lead->phone }}

Email

{{ $lead->email ?? 'N/A' }}

Company

{{ $lead->company ?? 'N/A' }}

Lead Information

Source

{{ ucfirst(str_replace('_', ' ', $lead->source)) }}

Assigned To

{{ $lead->assignedTo->name ?? 'Unassigned' }}

Follow-up Date

{{ $lead->follow_up_date ? $lead->follow_up_date->format('M d, Y') : 'Not set' }}

Created

{{ $lead->created_at->format('M d, Y h:i A') }}

@if($lead->notes)

Notes

{{ $lead->notes }}

@endif
@csrf @method('DELETE')
@if($lead->status !== 'converted')
@csrf @method('PUT')
@endif