@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') Registro de Notas: {{ $curso->nombre }} @endslot @endcomponent
Volver a Información del Curso
@if ($logros->isEmpty()) @foreach ($matriculados as $index => $matriculado) @php $estudiante = $matriculado->matricula->postulante; $notaFinal = $notasFinales[$estudiante->id_postulante]->promedio ?? ''; @endphp @endforeach
# Estudiante Nota Final
{{ $index + 1 }} {{ $estudiante->nombres }} {{ $estudiante->apellidos }}
@else @foreach ($logros as $logro) @endforeach @foreach ($logros as $logro) @if ($logro->subcomponentes->count()) @foreach ($logro->subcomponentes as $sub) @endforeach @else @endif @endforeach @foreach ($matriculados as $index => $matriculado) @php $estudiante = $matriculado->matricula->postulante; @endphp @foreach ($logros as $logroIndex => $logro) @if ($logro->subcomponentes->count()) @foreach ($logro->subcomponentes as $sub) @php $key = $estudiante->id_postulante . '_' . $sub->id; $nota = $notasSub[$key][0]->nota ?? ''; @endphp @endforeach @php $keyLogro = $estudiante->id_postulante . '_' . $logro->id; $notaLogro = $notasLogros[$keyLogro][0]->nota ?? ''; @endphp @else @php $key = $estudiante->id_postulante . '_' . $logro->id; $notaLogro = $notasLogros[$key][0]->nota ?? ''; @endphp @endif @endforeach @php $notaFinal = $notasFinales[$estudiante->id_postulante]->promedio ?? ''; @endphp @endforeach
# Estudiante {{ $logro->nombre }} Nota Final
{{ $sub->nombre }}
({{ $sub->peso }}%)
PromedioNota
{{ $index + 1 }} {{ $estudiante->nombres }} {{ $estudiante->apellidos }} {{ $notaLogro }} {{ $notaFinal }}
@endif
@endsection @section('script') @endsection