@extends('layouts.app') @section('title', $course->title . ' | Gerencia Docente', 'Curso | Gerencia Docente') @section('content')
Sección | Profesor | Prontuario | Creditos | # de Estudiantes |
---|---|---|---|---|
{{ $section->code }} |
@foreach ($section->professors->sortBy('last_name') as $professor)
{{ $professor->first_name . ' ' . $professor->last_name }}
@if (!$loop->last)
@endif @endforeach |
{{-- TODO: Add buton for uploading syllabus if admin --}} @if (!is_null($section->syllabus)) PDF @else @auth @else n/a @endauth @endif | @if (!is_null($section->credits)) {{ $section->credits }} @else n/a @endif | @if (!is_null($section->student_count)) {{ $section->student_count }} @else n/a @endif |