@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
|
ID
|
Curso
|
Docente
|
Grado
|
|
@foreach ($sql as $i)
| {{ $i->id_curso }} |
{{ $i->nombre }} |
{{ $i->docente_nom . ' ' . $i->apellido }} |
{{ $i->grado . ' ' . $i->seccion }} |
|
@endforeach
@endif
@endsection