@extends('template.layout') @section('content') @include('sweet::alert')
Historial de notas del alumno:

{{$user->apellido_paterno}} {{$user->apellido_materno}} , {{$user->nombres}}
@if(count($notasFinal) > 0) @foreach($notasFinal as $item) @endforeach
Nombre curso Promedio Final
{{ $item->nombre }} @if($item->promedio_final < 11.0) {{$item->promedio_final}} @elseif($item->promedio_final == null) --- @else {{$item->promedio_final}} @endif
@else
No se encontraron notas registradas
@endif
@endsection @section('scripts') @endsection