{{ $estudiante->identificacion }} |
{{ $estudiante->primer_apellido }} {{ $estudiante->segundo_apellido }} {{ $estudiante->nombre }} |
@foreach($componentes as $componente)
@php
$nota = isset($notas[$estudiante->id]) ? $notas[$estudiante->id]->firstWhere('tipo_componente_id', $componente->componente->id) : null;
@endphp
{{ $nota ? $nota->nota : '' }} |
@endforeach
@endforeach