@extends('layouts.app')
@section('title', $lead->title)
@section('content')
| Stage | |
| Status | {{ ucfirst($lead->status) }} |
| Value | {{ $lead->expected_value ? money((float) $lead->expected_value, (string) $lead->currency) : '—' }} |
| Probability | {{ $lead->probability }}% |
| Expected close | {{ $lead->expected_close_date?->format('d M Y') ?? '—' }} |
| Contact | {{ trim($lead->first_name.' '.$lead->last_name) ?: '—' }} |
| {{ $lead->email ?? '—' }} | |
| Phone | {{ $lead->phone ?? '—' }} |
| Owner | {{ $lead->owner?->name ?? '—' }} |
| In stage | {{ $lead->stage_changed_at ? (int) $lead->stage_changed_at->diffInDays(now()).' days' : '—' }} |
{{ $lead->description }}
@endifThe lead is kept and marked converted, so where a deal came from stays answerable later.