@extends('layouts/app') @section('titulo', 'Lista Semestres') @section('content') @if (Auth::user()->tipo == 1) @if (session('mensaje')) @endif @if (session('inmensaje')) @endif
@foreach ($sql2 as $item)

{{ $item->name . ' ' . $item->apellido }}

@endforeach @foreach ($gradoSeccion as $item)

{{ $item->grado . '' . $item->nom_seccion . '---' . $item->nombre . ' ' }}

@endforeach

DEBES SELECCIONAR UN SEMESTRE...

@foreach ($semestre as $sem) SEMESTRE {{ $sem->semestre . ' ' . $anio }} @endforeach PROMEDIO FINAL ELIMINAR NOTAS DE ESTE AÑO
@foreach ($sql as $i) @endforeach @foreach ($consulta as $ite) @endforeach
ID ALUMNO CURSO NOTA 1 NOTA 2 NOTA 3 PRO
{{ $i->id_nota }} {{ $i->name . ' ' . $i->apellido }} {{ $curso }} {{ $i->nota1 }} {{ $i->nota2 }} {{ $i->nota3 }} {{ $i->promedio }}
{{ $ite->id }} {{ $ite->name . ' ' . $ite->apellido }} {{ $curso }}
@endif @endsection