{{ date("d/m/Y", strtotime($pago->fechaRecepcion)) }} |
{{ $pago->id }} |
{{ $pago->Alumno->nombre }} {{ $pago->Alumno->apellidos }} |
@if(count($pago->TiposPago) >= 1)
@foreach($pago->TiposPago as $tipo)
@php $pagoTotal = $pagoTotal + $tipo->pago; @endphp
- {{ $tipo->TipoPago->nombre }} | ${{ number_format($tipo->pago,2) }}
@endforeach
@else
- Sin registro de tipos de pago.
@endif
|
@if($pago->concepto == 0)
{{ $pago->descripcionPago }}
@else
{{ $pago->Concepto->concepto }}
@endif |
${{ number_format($pagoTotal,2) }} |
@endforeach
@else