Minha Assinatura
{{-- Messagens da session --}} @include('partials.session-message')
@if ($pagamentos->isEmpty()) @endif @foreach ($pagamentos as $pagamento) @endforeach
Data Plano Valor Válido até Status
Sem registros até o momento.
{{ Carbon::parse($pagamento->dataemissao)->format('d/m/Y') }} {{ auth()->user()->tenant->plano->nome }} R$ {{ number_format($pagamento->valornf, 2, ',', '.') }} {{ Carbon::parse($pagamento->parcelaWithoutGlobalScope[0]->datavencimento)->format('d/m/Y') }} {{ $pagamento->parcelaWithoutGlobalScope[0]->status == 'ATIVO' ? 'Pendente' : ($pagamento->parcelaWithoutGlobalScope[0]->status == 'CONCLUÍDO' ? 'Pago' : 'Cancelado') }} @if (isset($pagamento->parcelaWithoutGlobalScope[0]) && $pagamento->parcelaWithoutGlobalScope[0]->status == 'ATIVO' && ($pagamento->qrcodeurl || $pagamento->chavepix)) @include('admin.pagamentos.modal-pagamento', ['pagamento' => $pagamento]) @endif