Código da Venda: {{ $sale->codigo }}
Cliente: @foreach($clientes as $cliente) @if($cliente->id == $sale->client_id) {{ $cliente->razao_social_nome }} @endif @endforeach
@foreach($user as $usuario) @if($usuario->id == $sale->iduser)Usuario: {{ $usuario->name }}
@endif @endforeachTipo: {{ $tiposPagamento[$pagamento->tipo_pagamento] ?? 'Desconhecido' }}
Valor: {{ number_format($pagamento->valor_pagamento,2,',','.') }}
@endif @endforeachItens | Produto | Qtde | Vlr. Venda | Acres. | Desc. | Total Venda |
---|---|---|---|---|---|---|
{{$produto->referencia_produto}} | {{$produto->nome_produto}} | @endif @endforeach{{ number_format($itenssale->qtde, 2, ',', '.') }} | {{ number_format($itenssale->vlrunitario, 2, ',', '') }} | {{ number_format($itenssale->valor_acrescimo, 2, ',', '') }} | {{ number_format($itenssale->valor_desconto, 2, ',', '') }} | {{ number_format($itenssale->vlrTotal, 2, ',', '.') }} |
Total Venda: R${{number_format($valorTotalVenda, 2, ',', '.') }}
|
Total Acrescimo: R$ {{number_format($valorTotalAcrescimo, 2, ',', '.') }}
|
Total Desconto: R${{number_format($valorTotalDesconto, 2, ',', '.') }}
|