@extends('layouts.app', ['title' => 'Caixa']) @section('css') @endsection @section('content')
| ID | TIPO | CLIENTE | DATA | FORMA(S) DE PAGAMENTO | VALOR TOTAL | ||||
|---|---|---|---|---|---|---|---|---|---|
| {{ $i->numero_sequencial }} | {{ $i->tipo }} | {{ $i->cliente ? $i->cliente->razao_social : 'NÃO IDENTIFICADO' }} | {{ __data_pt($i->created_at) }} |
@foreach($i->fatura as $f)
{{ App\Models\Nfce::getTipoPagamento($f->tipo_pagamento) }}
R$ {{ __moeda($f->valor) }} @endforeach |
R$ {{ __moeda($i->total) }} | ||||
| Nenhum registro | |||||||||
| ID | FORNECEDOR | DATA | FORMA(S) DE PAGAMENTO | VALOR TOTAL | |||||
|---|---|---|---|---|---|---|---|---|---|
| {{ $i->numero_sequencial }} | {{ $i->fornecedor ? $i->fornecedor->razao_social : 'NÃO IDENTIFICADO' }} | {{ __data_pt($i->created_at) }} |
@foreach($i->fatura as $f)
{{ App\Models\Nfce::getTipoPagamento($f->tipo_pagamento) }}
R$ {{ __moeda($f->valor) }} @endforeach |
R$ {{ __moeda($i->total) }} | |||||
| Nenhum registro | |||||||||
| CLIENTE | DESCRIÇÃO | DATA VENCIMENTO | DATA RECEBIMENTO | FORMA DE PAGAMENTO | VALOR TOTAL | VALOR RECEBIDO | |||
|---|---|---|---|---|---|---|---|---|---|
| {{ $c->cliente ? $c->cliente->razao_social : '--' }} | {{ $c->descricao ?? '--' }} | {{ __data_pt($c->data_vencimento, 0) }} | {{ __data_pt($c->data_recebimento, 0) }} | {{ App\Models\Nfce::getTipoPagamento($c->tipo_pagamento) }} | {{ __moeda($c->valor_integral) }} | {{ __moeda($c->valor_recebido) }} | |||
| Nenhum registro | |||||||||
| FORNECEDOR | DESCRIÇÃO | DATA VENCIMENTO | DATA RECEBIMENTO | FORMA DE PAGAMENTO | VALOR TOTAL | VALOR RECEBIDO | |||
|---|---|---|---|---|---|---|---|---|---|
| {{ $c->fornecedor ? $c->fornecedor->razao_social : '--' }} | {{ $c->descricao ?? '--' }} | {{ __data_pt($c->data_vencimento, 0) }} | {{ __data_pt($c->data_pagamento, 0) }} | {{ App\Models\Nfce::getTipoPagamento($c->tipo_pagamento) }} | {{ __moeda($c->valor_integral) }} | {{ __moeda($c->valor_pago) }} | |||
| Nenhum registro | |||||||||
| # | VENDA | CLIENTE | DATA | FORMA DE PAGAMENTO | VALOR TROCA/DEVOLUÇÃO | VALOR ORIGINAL DA VENDA | |||
|---|---|---|---|---|---|---|---|---|---|
| {{ $t->numero_sequencial }} | {{ $t->nfe ? ($t->nfe ? $t->nfe->numero_sequencial : '--') : ($t->nfce ? $t->nfce->numero_sequencial : '--') }} | {{ $t->nfce ? ($t->nfce->cliente ? $t->nfce->cliente->razao_social : '--') : ($t->nfe ? $t->nfe->cliente->razao_social : '--') }} | {{ __data_pt($t->created_at) }} | {{ App\Models\Nfce::getTipoPagamento($t->tipo_pagamento) }} | {{ __moeda($t->valor_troca) }} | {{ __moeda($t->valor_original) }} | |||
| Nenhum registro | |||||||||