@extends('layouts.master') @section('title') Inicio @endsection @section('content') @component('components.breadcrumb') @slot('li_1') Inicio @endslot @slot('li_2') Panel Academico @endslot @slot('title') Estudiantes @endslot @endcomponent

Historial Académico

@foreach($matriculas as $mat)
Semestre: {{ $mat->semestre->nombre ?? '---' }}   |   Período: {{ $mat->periodo->nombre ?? '---' }}   |   Fecha Matrícula: {{ $mat->fecha_matricula }}
@foreach($mat->matriculaCursos as $mc) @endforeach
Curso Módulo Estado Nota Final
{{ $mc->curso->nombre }} {{ $mc->curso->modulo->nombre ?? '-' }} {{ $mc->estado }} @php $nota = $mc->curso->notaFinal ->where('estudiante_id', Auth::user()->estudiante->id_postulante) ->first(); @endphp @if($nota) {{ $nota->promedio }} @else Sin Nota @endif
@endforeach
@endsection @section('script') @endsection