{{-- Tabela de Recorrências --}}
Listagem de Recorrências
@foreach($recorrencias as $index => $recorrencia) @endforeach
# Vencimento Valor Status Valor {{ $tipoConta === 'receber' ? 'Recebido' : 'Pago' }} Data {{ $tipoConta === 'receber' ? 'Recebimento' : 'Pagamento' }} Ações
{{ $index + 1 }} {{ \Carbon\Carbon::parse($recorrencia->data_vencimento)->format('d/m/Y') }} @if($recorrencia->isVencida())
Vencida @endif
R$ {{ number_format($recorrencia->valor_total, 2, ',', '.') }} {{ $recorrencia->status_label }} R$ {{ number_format($recorrencia->valor_pago, 2, ',', '.') }} @if($recorrencia->data_pagamento) {{ \Carbon\Carbon::parse($recorrencia->data_pagamento)->format('d/m/Y') }} @else - @endif
@if($recorrencia->status !== 'pago') @endif