@php $matriculas = \App\Models\Matricula::with('alumno') ->where('programa_id', $this->record->id) ->get(); @endphp
| Alumno | TelĂ©fono | Estado | Fecha MatrĂcula | ||
|---|---|---|---|---|---|
| {{ $m->alumno->nombre ?? '' }} | {{ $m->alumno->email ?? '' }} | {{ $m->alumno->telefono ?? '' }} | {{ $m->estado ?? '' }} | {{ $m->fecha_matricula ? $m->fecha_matricula->format('d-m-Y') : '' }} | Ver ficha |
| No hay alumnos matriculados en este programa. | |||||