{{$item->UF}} |
R$ {{ number_format($item->VALOR_CONTABIL, 2, ',' , '.') }} |
R$ {{ number_format($item->BASECALCULO, 2, ',' , '.') }} |
R$ {{ number_format($item->OUTRAS_ICMS, 2, ',' , '.') }} |
R$ {{ number_format($item->VALOR_ICMS_ST, 2, ',' , '.') }} |
@php $valorContabil = $valorContabil + $item->VALOR_CONTABIL;
@php $baseCalculo = $baseCalculo + $item->BASECALCULO;
@php $outras = $outras + $item->OUTRAS_ICMS;
@php $valorIcmsST = $valorIcmsST + $item->VALOR_ICMS_ST;
@endforeach
Totalizadores: |
R$ {{ number_format($valorContabil, 2, ',' , '.') }} |
R$ {{ number_format($baseCalculo, 2, ',' , '.') }} |
R$ {{ number_format($outras, 2, ',' , '.') }} |
R$ {{ number_format($valorIcmsST, 2, ',' , '.') }} |