Branch Health Matrix

{{ $header_text }}

@foreach ($branchHealth as $branch) @php $riskMap = [ 'low' => [ 'dot' => '#10B981', 'bg' => '#ECFDF5', 'border' => '#A7F3D0', 'text' => '#047857', 'label' => 'Healthy', ], 'medium' => [ 'dot' => '#F59E0B', 'bg' => '#FFFBEB', 'border' => '#FCD34D', 'text' => '#B45309', 'label' => 'Watch', ], 'high' => [ 'dot' => '#EF4444', 'bg' => '#FEF2F2', 'border' => '#FCA5A5', 'text' => '#B91C1C', 'label' => 'Critical', ], ]; $risk = $riskMap[$branch['risk']]; $convColor = $branch['risk'] === 'low' ? '#10B981' : ($branch['risk'] === 'medium' ? '#F59E0B' : '#EF4444'); @endphp

{{ $branch['name'] }}

{{ $branch['zone'] }} ยท HDR {{ $branch['hdr'] }}

{{ $risk['label'] }}

DRP

{{ $branch['drp_name'] }}

Open TK

{{ $branch['open_tickets'] }}

Conv.

{{ $branch['conversion_rate'] }}%

Upcoming

{{ $branch['upcoming_events'] }}

@if ($branch['is_underperforming'])
Below national performance target
@endif
@endforeach