@php
use App\Models\Instituto;
$instituto = Instituto::first();
@endphp
Ficha de Matrícula
| Institución |
{{ $instituto->nombre }} |
DRE |
{{ $instituto->dre }} |
| Dirección |
{{ $instituto->direccion }} |
Teléfono |
{{ $instituto->telefono }} |
| Código Modular |
{{ $instituto->codigo_modular }} |
Departamento |
{{ $instituto->departamento }} |
| Provincia |
{{ $instituto->provincia }} |
Distrito |
{{ $instituto->distrito }} |
| 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 |
{{ $matricula->estado }} |
| # |
Curso |
Horas Semestrales |
Horas Prácticas |
Créditos |
@foreach ($matricula->matriculaCursos as $index => $mc)
| {{ $index + 1 }} |
{{ $mc->curso->nombre ?? '---' }} |
{{ $mc->curso->horas_semestrales ?? '-' }} |
{{ $mc->estado }} |
{{ $mc->curso->creditos ?? '-' }} |
@endforeach
Fecha de emisión: {{ now()->format('d/m/Y') }}