Update Lead Stage
Lead Details
  • Lead Name{{ $lead->first_name }} {{ $lead->last_name }}
  • Source{{ $lead->source }}{{ $lead->source == 'Other' ? ' | '. $lead->source_other :'' }}
  • Collecion{{ $lead_details['collection_name'] }}
  • Pipeline{{ $lead_details['pipeline_name'] }}
  • Stage {{ $lead_details['stage_name'] }}
  • Channel{{ $lead_details['channel_type'] }}
  • Status{{ $lead->status }}

@if(count($collection_fields) > 0)
Custom Fields
    @foreach($collection_fields as $key => $field)
  • {{ $field['name'] }}{{ $field['value'] }}
  • @endforeach

@endif @if($lead_details['account_type'] == 'company' && isset($lead_details['company_name']))
Client Details
  • Client Name{{ $lead_details['account_name'] ?? null }}
  • Client Type{{ ucfirst($lead_details['account_type']) }}
  • @if($lead_details['account_type'] == 'company' && isset($lead_details['company_name']))
  • Company Name{{ $lead_details['company_name'] }}
  • Website{{ $lead_details['website'] }}
  • Industry{{ $lead_details['industry'] }}
  • Annual Revenue{{ $lead_details['annual_revenue'] }}
  • Company Size{{ $lead_details['company_size'] }}
  • @endif

@endif @if($primary_contact)
Primary Contact Details

{{ $primary_contact->name }}

{{ $primary_contact->address }}

{{ $primary_contact->email }}

{{ $primary_contact->phone ? $primary_contact->phone : '-' }}

@endif
Other Details

Updated on {{ date_format(date_create($lead->updated_at), 'd F Y, h:i A') }}

Created on {{ date_format(date_create($lead->created_at), 'd F Y, h:i A') }}

@if($lead->user != null)

Created By {{ $lead->user->given_names }} {{ $lead->user->surname }}

@endif