TOTAIS
QUANT.TOTAL: {{ Number($qtd, 0) }}
@if($qtd_alt > 0)
QUANT.ALT.TOTAL:{{ Number($qtd_alt, 0) }}
@endif
@if($info['EXIBE_VALORES'] == 1)
SUB-TOTAL: R$ {{number_format(truncate_number($vlr, 2), 2, ',' , '.') }}
ACRÉSCIMO: R$ {{number_format(truncate_number($acr, 2), 2, ',' , '.') }}
@php $perc_desconto_total = ($des*100) / $vlr;
DESCONTO: R$ {{number_format(truncate_number($des, 2), 2, ',' , '.') }}
PERC.DESCONTO: {{number_format(truncate_number($perc_desconto_total, 2), 2, ',' , '.') }}%
IPI: R$ {{number_format(truncate_number($ipi, 2), 2, ',' , '.') }}
SUBST.TRIB: R$ {{number_format(truncate_number($st , 2), 2, ',' , '.') }}
FRETE: R$ {{number_format(truncate_number($info['PEDIDO']['VALOR_FRETE'], 2), 2, ',' , '.')}}
@php $total_real = $total_real + $info['PEDIDO']['VALOR_FRETE'];
VALOR TOTAL: R$ {{number_format(truncate_number($total_real, 2), 2, ',' , '.') }}
@endif