{{$empresa->nome_fantasia}}
{{$empresa->razao_nome}}
{{$empresa->endereco}}, {{$empresa->numero}},
{{$empresa->municipio_nome}}-{{$empresa->uf}}
{{Str::formatBRCNPJ($empresa->cpf_cnpj)}}
RELATÓRIO
DADOS DO CLIENTE
Razão Social: {{$cliente->razao_nome}}
CPF/CNPJ: {{Str::formatBRCNPJ($cliente->cpf_cnpj)}}
Endereço: {{$cliente->endereco}}
Bairro: {{$cliente->bairro}}
Cidade:{{$cliente->municipio_nome}}-{{$cliente->sigla}}
CONTAS A RECEBER
# |
DT. EMISSÃO |
DT. VENCIMENTO |
VALOR TOTAL |
{{$contas_receber->id}} |
{{Str::formatBRDate($contas_receber->data_criacao)}} |
{{Str::formatBRDate($contas_receber->data_vencimento)}} |
{{Str::formatBRCurrency($contas_receber->valor_total)}}
|
PARCELAS
FORMA DE PAGAMENTO |
DT. PAGAMENTO |
STATUS |
VALOR PAGO |
@foreach ($parcelas as $parcela)
{{$parcela->descricao}} |
@if(!empty($parcela->data_pagamento)){{Str::formatBRDate($parcela->data_pagamento)}}@endif |
@switch($parcela->status)
@case(1)
PENDENTE |
@break
@case(2)
PAGO |
@break
@case(3)
CANCELADO |
@break
@endswitch
{{Str::formatBRCurrency($parcela->valor_pago)}}
|
@endforeach