@extends('layouts/app') @section('titulo', 'Lista Notas') @section('content') @if (Auth::user()->tipo == 2) @if (session('mensaje-error')) @endif

LISTA DE NOTAS POR CADA DOCENTE

@foreach ($sql as $i) @endforeach
ID MIS CURSOS GRADO SECCION
{{ $i->id_curso }} {{ $i->nombre }} {{ $i->grado }} {{ $i->nombre_seccion }} {{-- --}}
@endif @endsection