@php $matriculas = \App\Models\Matricula::with('alumno') ->where('programa_id', $this->record->id) ->get(); @endphp

Alumnos inscritos ({{ $matriculas->count() }})

@forelse ($matriculas as $m) @empty @endforelse
Alumno Email 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.