@extends('layouts.app') @section('title', $campaign->name) @section('content')
{{ title_case_words($campaign->channel) }} ยท {{ $campaign->starts_on?->format('d M Y') ?: 'no start' }} โ {{ $campaign->ends_on?->format('d M Y') ?: 'ongoing' }}
Leads are matched on the free-text campaign field equal to {{ $campaign->name }}.
Revenue is the sum of invoices raised for the customers those leads converted into โ not an assumed value per conversion.
| Lead | Name | Phone | Source | Priority | Score | Status | Converted | |
|---|---|---|---|---|---|---|---|---|
| {{ $lead->lead_number }} | {{ $lead->first_name }} {{ $lead->last_name }} | {{ $lead->phone }} | {{ title_case_words($lead->source) }} | {{ title_case_words($lead->priority) }} | {{ $lead->score }} | {{ title_case_words($lead->status) }} | {{ $lead->converted_at?->format('d M Y') ?: 'โ' }} | Open |