@extends('layouts.layoutMaster') @section('title', 'Contas Recorrentes - A Receber') @section('vendor-style') @endsection @section('vendor-script') @endsection @section('content')
Contas Recorrentes - A Receber
{{ $conta->descricao }} - Periodicidade: {{ ucfirst($conta->tipo_recorrencia) }}
Voltar
Total de Recorrências
{{ $recorrencias->count() }}
Recebidas
{{ $recorrencias->where('status', 'pago')->count() }}
Pendentes
{{ $recorrencias->where('status', 'pendente')->count() }}
Valor por Período
R$ {{ number_format($conta->valor_total, 2, ',', '.') }}
@include('_partials/_modals/modal-recorrencias-tabela', [ 'recorrencias' => $recorrencias, 'tipoConta' => 'receber', 'editRoute' => 'contas-receber.edit', 'btnColor' => 'success' ])
@endsection @section('page-script') @include('_partials/_modals/modal-delete-conta', [ 'deleteRoute' => '/financeiro/contas-a-receber' ]) @endsection