| FORMA PAGAMENTO |
VALOR PAGO |
@foreach($item->fatura as $f)
| {{ \App\Models\Nfce::getTipoPagamento($f->tipo_pagamento) }} |
R$
@isset($preVenda)
{{ __moeda($f->valor_parcela) }}
@else
{{ __moeda($f->valor) }}
@endif
|
@endforeach
| Valor dos produtos |
R$ {{ __moeda($item->itens->sum('sub_total')) }} |
| Desconto |
R$ {{ __moeda($item->desconto) }} |
| Acréscimo |
R$ {{ __moeda($item->acrescimo) }} |
@if($item->valor_frete > 0)
| Frete |
R$ {{ __moeda($item->valor_frete) }} |
@endif
| Total |
R$ {{ __moeda($item->total) }} |
| Troco |
R$ {{ __moeda($item->troco) }} |
| Data |
{{ __data_pt($item->created_at) }} |
| Código da venda |
@isset($preVenda)
{{ $item->codigo }}
@else
{{ $item->numero_sequencial }}
@endif
|
@if($item->funcionario)
| Vendedor |
{{ $item->funcionario->nome }} |
@endif
@if($item->cliente)
| Cliente |
{{ $item->cliente->razao_social }} |
@endif
@if($item->observacao)
| Observação: {{ $item->observacao }} |
@endif