@php $simboloMoeda = \App\Helpers\MoneyHelper::simboloMoeda($venda->moeda ?? 'BRL'); @endphp {{ __('vendas.menu') }}-{{ $venda->codigo }}-{{ $cliente->nome_fantasia }}
{{ __('vendas.label_date') }}: {{ isset($venda->data_emissao) ? date('d/m/Y', strtotime($venda->data_emissao)) : date('d/m/Y') }}
{{ __('vendas.menu') }}: {{ $venda->codigo }}
ROOT DEVELOPERS
AV. ENG. LUIZ CARLOS BERRINI, 1681 -    CONJ 111 EDIF BERRINI -
CIDADE MONÇÕES - São Paulo - SP - CEP: 04571-011
ROOT DEVELOPERS - CONSULTORIA EM TECNOLOGIA DA INFORMAÇÃO LTDA
CNPJ: 36.643.240/0001-51
(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 }}
{{ __('orcamento.label_delivery_deadline') }}
{{ $venda->orcamento->prazo_entrega }}
@if($venda->observacoes)
{{ $venda->observacoes }}
@endif
@if(isset($itens) && count($itens) > 0) @foreach($itens as $item) @endforeach @else @endif
# {{ __('vendas.label_service_type') }} {{ __('vendas.label_description') }} {{ __('vendas.label_quantity') }} {{ __('vendas.label_unit') }} {{ __('vendas.label_unit_price') }} {{ __('vendas.label_subtotal') }}
{{ $loop->iteration }} {{ $item->servico->nome ?? $item->descricao }} {{ $item->descricao }} {{ (int)$item->quantidade }} {{ $item->unidade }} {{ $simboloMoeda }} {{ number_format($item->valor_unitario, 2, ',', '.') }} {{ $simboloMoeda }} {{ number_format($item->valor_total ?? ($item->quantidade * $item->valor_unitario), 2, ',', '.') }}
{{ __('vendas.label_no_sales') }}
{{ __('vendas.label_subtotal') }}:
{{ $simboloMoeda }} {{ isset($venda->subtotal) ? number_format($venda->subtotal, 2, ',', '.') : '0,00' }}
@if(isset($venda->desconto) && $venda->desconto > 0)
{{ __('vendas.label_discount') }} {{ number_format($venda->desconto, 1, ',', '.') }}%
-{{ $simboloMoeda }} {{ number_format($venda->valor_desconto ?? 0, 2, ',', '.') }}
@endif
{{ __('orcamento.label_total_general') }}:
{{ $simboloMoeda }} {{ number_format($venda->total, 2, ',', '.') }}
{{ __('vendas.label_payment_method') }}:
{{ $venda->condicao_pagamento }}