@php $teamPerformance = $teamPerformance ?? []; $cards = $teamPerformance['cards'] ?? []; $periodLabel = $teamPerformance['period_label'] ?? ($tv['period_label'] ?? now()->format('F Y')); @endphp

Sales Team Performance

@include('sales-tv.partials.circular-metric', [ 'card' => $cards['total_sales_revenue'] ?? [], 'title' => 'Total Sales Revenue', 'periodLabel' => $periodLabel, ]) @include('sales-tv.partials.circular-metric', [ 'card' => $cards['gross_profit'] ?? [], 'title' => 'Gross Profit', 'periodLabel' => $periodLabel, ]) @include('sales-tv.partials.circular-metric', [ 'card' => $cards['units_sold'] ?? [], 'title' => 'Units Sold', 'unitsSuffix' => true, 'periodLabel' => $periodLabel, ]) @include('sales-tv.partials.circular-metric', [ 'card' => $cards['applications_submitted'] ?? [], 'title' => 'Applications Submitted', 'periodLabel' => $periodLabel, ])