@if(empty($stages))
Sin datos
@else
@foreach($stages as $stage)
@php
$pct = ($stage['count'] / $maxCount) * 100;
$stageIcon = $stage['icon'] ?? 'bi-circle';
$stageColor = $stage['color'] ?? 'secondary';
@endphp
{{ $stage['label'] }}
{{ $stage['count'] }}
@endforeach
@endif