Performance Change

Compare the latest two months of your company's customer report metrics.

@if(!$company)
Your user profile does not have a configured company. Please ask an administrator to set your company.
@elseif(count($months) < 2)
Not enough months of data are available yet to show a performance change report.
@endif
@if($company && count($months) === 2)
Company

{{ $company }}

Previous Month

{{ $month_labels[0] ?? '-' }}

Latest Month

{{ $month_labels[1] ?? '-' }}

@forelse($agent_mastery_rows as $groupName => $rows) @forelse($rows as $row) @empty @endforelse @empty @endforelse
Metric {{ $month_labels[0] ?? 'Month 1' }} {{ $month_labels[1] ?? 'Month 2' }} Change
{{ $groupName }}
{{ $row['label'] }} {{ $row['first_value'] ?? '-' }} {{ $row['second_value'] ?? '-' }} {{ $row['change'] ?? '-' }}
No metrics in this group
No data available
@forelse($access_rows as $groupName => $rows) @forelse($rows as $row) @empty @endforelse @empty @endforelse
Metric {{ $month_labels[0] ?? 'Month 1' }} {{ $month_labels[1] ?? 'Month 2' }} Change
{{ $groupName }}
{{ $row['label'] }} {{ $row['first_value'] ?? '-' }} {{ $row['second_value'] ?? '-' }} {{ $row['change'] ?? '-' }}
No metrics in this group
No data available
@endif