@extends('admin.layout') @section('title', $course->course_code . ' - Course Details - GRADELY') @push('styles') @endpush @section('content')
| Lecturer | Section | Capacity | Enrolled | Actions |
|---|---|---|---|---|
| {{ $cl->lecturer->name }} {{ $cl->lecturer->email }} |
{{ $cl->section ?? 'Default' }} | {{ $cl->capacity > 0 ? $cl->capacity : 'Unlimited' }} | {{ $cl->students->count() }} students |
No lecturers assigned yet. Click "Assign Lecturer" to get started.
@endif| Student | Section | Lecturer | Actions | |
|---|---|---|---|---|
| {{ $enrollment['student']->name }} | {{ $enrollment['student']->email }} | {{ $enrollment['section'] }} | {{ $enrollment['lecturer'] }} |
No students enrolled yet. Click "Enroll Student" to add students.
@endif