@php use App\Models\Instituto; $instituto = Instituto::first(); @endphp
| Institución | {{ $instituto->nombre }} | DRE | {{ $instituto->dre }} |
| Dirección | {{ $instituto->direccion }} | Teléfono | {{ $instituto->telefono }} |
| Código Modular | {{ $instituto->codigo_modular }} | Fecha de emisión | {{ now()->format('d/m/Y') }} |
| Apellidos y Nombres | {{ $matricula->postulante->apellidos }} {{ $matricula->postulante->nombres }} | DNI | {{ $matricula->postulante->dni }} |
| Periodo | {{ $matricula->periodo->nombre }} | Plan de Estudios | {{ $matricula->planEstudio->nombre }} |
| Semestre | {{ $matricula->semestre->nombre }} | Estado de Matrícula | {{ $matricula->estado }} |
| # | Curso | Créditos | Nota Final | Condición |
|---|---|---|---|---|
| {{ $index + 1 }} | {{ $mc->curso->nombre ?? '---' }} | {{ $mc->curso->creditos ?? '-' }} | {{ $mc->nota_final ?? '-' }} | @if(is_null($mc->nota_final)) - @elseif($mc->nota_final >= 13) Aprobado @elseif($mc->nota_final >= 11) Recuperación @else Desaprobado @endif |
__________________________
Firma y Sello Institucional