@extends('layouts.app') @section('title', 'Registrar Pagamento') @push('styles-custom') @endpush @section('content')
Descrição: {{ $conta->descricao ?? 'N/A' }}
Valor da Conta: R$ {{ number_format($conta->valor, 2, ',', '.') }}
Total Pago: R$ {{ number_format($conta->totalPago(), 2, ',', '.') }}
Valor Restante: R$ {{ number_format($conta->valor - $conta->totalPago(), 2, ',', '.') }}