@if(count($content) > 0)
Meta:
{{ str_replace(',00', '', number_format($indicator['target'], 2, ',', '.')) . ($indicator['percentage'] ? '%' : '') }}
BMG:
{{ str_replace(',00', '', number_format($indicator['real'], 2, ',', '.')) . ($indicator['percentage'] ? '%' : '') }}
@if($indicator['asc'])
@if($indicator['real'] >= $indicator['target'])
@else
@endif
@else
@if($indicator['real'] >= $indicator['target'])
@else
@endif
@endif
@endif
@foreach($indicator['realByCallcenter'] as $callcenter => $real)
{{ $callcenter }}:
{{ str_replace(',00', '', number_format($real, 2, ',', '.')) . ($indicator['percentage'] ? '%' : '') }}
@if($indicator['asc'])
@if($indicator['real'] >= $indicator['target'])
@else
@endif
@else
@if($indicator['real'] >= $indicator['target'])
@else
@endif
@endif
@endforeach