@endif
| Referência | Cliente | Data de cadastro | Data de vencimento | Estado | Valor Iintegral | Valor pago | Tipo de pag. |
|---|---|---|---|---|---|---|---|
| Vencimento: {{ \Carbon\Carbon::parse($c->data_vencimento)->format('d/m/Y') }} | |||||||
| {{ $c->referencia }} | {{ $c->cliente ? $c->cliente->razao_social : ($c->venda ? $c->venda->cliente->razao_social : 'Não Identificado') }} | {{ \Carbon\Carbon::parse($c->created_at)->format('d/m/Y') }} | {{ \Carbon\Carbon::parse($c->data_vencimento)->format('d/m/Y') }} | @if($c->status) Pago @else Pendente @endif | {{ number_format($c->valor_integral, 2, ',', '.') }} | {{ number_format($c->valor_recebido, 2, ',', '.') }} | {{ $c->tipo_pagamento != '' ? $c->tipo_pagamento : '-' }} |
| Contas Pagas: R$ {{number_format($somaLinhaPago, 2, ',', '.')}} | Contas Pendentes: R$ {{number_format($somaLinhaPendente, 2, ',', '.')}} | ||||||
| Contas Pagas: R$ {{number_format($somaLinhaPago, 2, ',', '.')}} | Contas Pendentes: R$ {{number_format($somaLinhaPendente, 2, ',', '.')}} | ||||||
| Soma Contas Pagas: R$ {{number_format($somaPago, 2, ',', '.')}} | Soma Contas Pendentes: R$ {{number_format($somaPendente, 2, ',', '.')}} | ||||||