Quebras %
@foreach ($vendas as $key => $venda) @endforeach
{{ $rotulo}} Total Vendas Total Quebras % Sobre Vendas
{{ $key }} {{ number_format($totaisFamiliasPorGestor[$key] ?? 0, 0, ',', ' ') }} {{ number_format($venda, 0, ',', ' ') }} {{ number_format($quebrasPorcentagem[$key] ?? 0, 2, ',', ' ') }}
Total {{ number_format(array_sum($totaisFamiliasPorGestor), 0, ',', ' ') }} {{ number_format(array_sum($vendas), 0, ',', ' ') }} {{ number_format((array_sum($vendas) ??0) / max(array_sum($totaisFamiliasPorGestor), 1) * 100, 2, ',', ' ') }}