Data: {{ isset($venda->data_emissao) ? date('d/m/Y', strtotime($venda->data_emissao)) : date('d/m/Y') }}
Venda: {{ $venda->codigo }}
ROOT DEVELOPERS
AV. PAULISTA, 302 - CONJ. 10    EDIF. JOSÉ M BORGES -
BELA VISTA - São Paulo - SP - CEP: 0130-000
ROOT DEVELOPERS - CONSULTORIA EM TECNOLOGIA DA INFORMAÇÃO LTDA
CNPJ: 36643240000151
(11) 96078-2246
alexandre.rodrigues@rootdevelopers.com.br
@php $contatoPrincipal = isset($cliente->contatos) ? $cliente->contatos->where('principal', true)->first() : null; @endphp
{{ $cliente->nome_fantasia }}
CNPJ: {{ $cliente->cnpj ?? 'N/A' }}
{{ $cliente->telefone }}
{{ $contatoPrincipal->email ?? $cliente->email }}
{{ $cliente->endereco }} - {{ $cliente->bairro }} - {{ $cliente->cidade }}/{{ $cliente->estado }}
Prazo de Entrega
{{ $venda->orcamento->prazo_entrega }}
@if($venda->observacoes)
{{ $venda->observacoes }}
@endif
@if(isset($itens) && count($itens) > 0) @foreach($itens as $item) @endforeach @else @endif
# Serviço Descrição Qtd Unidade Valor Unitário Subtotal
{{ $loop->iteration }} {{ $item->servico->nome ?? $item->descricao }} {{ $item->descricao }} {{ (int)$item->quantidade }} {{ $item->unidade }} R$ {{ number_format($item->valor_unitario, 2, ',', '.') }} R$ {{ number_format($item->valor_total ?? ($item->quantidade * $item->valor_unitario), 2, ',', '.') }}
Nenhum item encontrado
Subtotal:
R$ {{ isset($venda->subtotal) ? number_format($venda->subtotal, 2, ',', '.') : '0,00' }}
@if(isset($venda->desconto) && $venda->desconto > 0)
Desconto {{ number_format($venda->desconto, 1, ',', '.') }}%
-R$ {{ number_format($venda->valor_desconto ?? 0, 2, ',', '.') }}
@endif
Total Geral:
R$ {{ number_format($venda->total, 2, ',', '.') }}
Forma de pagamento:
{{ $venda->condicao_pagamento }}