Detalle del aporte

{{ $conceptoAporte->nombre }}

{{ ucfirst($conceptoAporte->alcance->value) }} · {{ ucfirst($conceptoAporte->estado->value) }} · {{ $conceptoAporte->obligaciones->count() }} obligaciones

Volver a aportes
@if ($paralelo->permiteGestion(auth()->user()) && $conceptoAporte->estado === \App\Enums\EstadoConceptoAporte::Activo)

Editar aporte

@csrf @method('PUT')
Cancelar

La anulación conserva el registro y sus obligaciones para auditoría.

Anular aporte
@csrf @method('DELETE')

Esta acción no elimina la información registrada y podrá revisarse posteriormente.

@endif

Estudiantes asignados

@forelse($conceptoAporte->obligaciones as $obligacion)@php($pagado = (float) ($obligacion->getAttribute('total_pagado') ?? 0))@empty@endforelse
EstudianteEstadoAsignadoPagadoPendiente
{{ $obligacion->estudiante->nombre_completo }}{{ ucfirst($obligacion->estado->value) }}$ {{ number_format((float) $obligacion->monto_adeudado, 2, ',', '.') }}$ {{ number_format($pagado, 2, ',', '.') }}$ {{ number_format(max(0, (float) $obligacion->monto_adeudado - $pagado), 2, ',', '.') }}
No existen obligaciones.