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