Course Details: {{ $course->title }}
Code: {{ $course->code }}
Description: {{ $course->credit_hours }}
Assigned Instructors:
@if ($course->instructors->isEmpty())
No instructors assigned yet.
@else
@foreach ($course->instructors as $instructor)
- {{ $instructor->fame }} {{ $instructor->sname }} ({{ $instructor->email }})
@endforeach
@endif
Edit Course
Back to Courses
{{-- Form to assign/unassign instructors --}}
Manage Instructors
@endsection