@extends('layouts/app') @section('titulo', 'Lista Cursos') @section('content') @if (Auth::user()->tipo == 1) @if (session('correcto')) @endif @if (session('incorrecto')) @endif

LISTA DE DOCENTES ASIGNADOS

   Agregar Curso al Docente
@foreach ($sql as $i) @endforeach
ID Curso Docente Grado
{{ $i->id_curso }} {{ $i->nombre }} {{ $i->docente_nom . ' ' . $i->apellido }} {{ $i->grado . ' ' . $i->seccion }}
@endif @endsection