@if($instituto && $instituto->logo && file_exists(public_path('storage/' . $instituto->logo))) @elseif(file_exists(public_path('images/logo.png'))) @endif
{{ $instituto->nombre ?? 'INSTITUTO DE EDUCACIÓN SUPERIOR' }}
@if($instituto->codigo_modular)
CÓD. MODULAR: {{ $instituto->codigo_modular }}
@endif @if($instituto->dre)
DRE: {{ $instituto->dre }}
@endif @if($instituto->direccion)
{{ $instituto->direccion }}
@endif @if($instituto->telefono)
TELÉF: {{ $instituto->telefono }}
@endif
COMPROBANTE DE PAGO INTERNO
TICKET DE COBRO N° {{ str_pad($pago->id_pagos, 8, '0', STR_PAD_LEFT) }}
Fecha / Hora: {{ \Carbon\Carbon::parse($pago->created_at)->format('d/m/Y H:i:s') }}
DNI: {{ $pago->postulante->dni }}
Alumno: {{ $pago->postulante->nombre_completo ?? ($pago->postulante->nombres . ' ' . $pago->postulante->apellidos) }}
Caja / Turno: {{ $pago->caja->nombre ?? 'Caja Principal' }}
DESCRIPCIÓN TOTAL
{{ $pago->concepto->nombre }} S/ {{ number_format($pago->monto, 2) }}
TOTAL RECIBIDO: S/ {{ number_format($pago->monto, 2) }}
@if($pago->observacion)
Observación: {{ $pago->observacion }}
@endif