{{-- Filters --}}
{{-- Overview Stats --}} @if ($this->overviewStats)
New Leads
{{ number_format($this->overviewStats['new_leads']) }}
Won
{{ number_format($this->overviewStats['won_leads']) }}
Conversion Rate
{{ $this->overviewStats['conversion_rate'] }}%
Total Value
${{ number_format($this->overviewStats['total_value'], 2) }}
@endif {{-- Pipeline Funnel --}}

Pipeline Funnel

@foreach ($this->pipelineFunnel as $stage) @if (($stage['name'] ?? '') !== '_summary')
{{ $stage['name'] }} {{ $stage['count'] }} ({{ $stage['percentage'] }}%)
@endif @endforeach
{{-- Source Analysis --}}

Source Analysis

@forelse ($this->sourceAnalysis as $row) @empty @endforelse
Source Total Won Rate Value
{{ $row['source'] }} {{ $row['total'] }} {{ $row['won'] }} {{ $row['conversion_rate'] }}% ${{ number_format($row['total_value'], 2) }}
No data for this period
{{-- User Performance --}}

User Performance

@forelse ($this->userPerformance as $row) @empty @endforelse
User Total Won Open Rate
{{ $row['user_name'] }} {{ $row['total'] }} {{ $row['won'] }} {{ $row['open'] }} {{ $row['conversion_rate'] }}%
No data for this period
{{-- Activity Summary --}}

Activity Summary

@forelse ($this->activitySummary as $activity)
{{ $activity['type'] }}
{{ number_format($activity['count']) }}
@empty
No activities in this period
@endforelse