@extends('template.layout') @section('content') @include('sweet::alert')
Notas por cursos
@php($count = 0) @if(count($notasxAlumno) > 0 ) @foreach($notasxAlumno[0]->Notas as $pc) @endforeach @foreach($notasxAlumno as $item) @foreach($item->Notas as $not) @if($not->nota < 11) @else @endif @endforeach @php($aux11 = 0) @foreach($item->Notas as $nx) @php($aux11 += $nx->nota) @php($count++) @endforeach @if($count > 0) @php($resultado = $aux11/$count) @if($resultado < 11) @else @endif @else @endif @endforeach @else
No se encontraron notas registradas
@endif
@endsection @section('scripts') @endsection