|
{{ (!isset($line))? $line=1 : ++$line}}
|
{{$item['codigo_produto']}}
|
{{$item['nome_produto']}}
|
{{isset($item['desconto_revendedora'])? $item['desconto_revendedora'] ."%" : "0%" }}
|
{{number_format($item['preco'],2,',','')}}
|
{{$item['quantidade']}}
|
{{$item['estoque']}}
|
{{number_format($item['valor_bruto'],2,',','')}}
|
{{number_format($item['valor_bruto'] - $item['valor_liquido'],2,',','')}}
|
{{number_format($item['valor_liquido'],2,',','')}}
|
|
@endforeach
|
Valor Total
|
BRUTO: R${{number_format($vlbruto,2,',','')}}
|
DESCONTOS: R${{number_format($vlbruto - $vlliqui,2,',','')}}
|
REP.DIST: R${{number_format($vlliqui,2,',','')}}
|