Instructor Details: {{ $instructor->name }}
Email: {{ $instructor->email }}
Courses Taught:
@if ($instructor->courses->isEmpty())
This instructor is not currently assigned to any courses.
@else
@foreach ($instructor->courses as $course)
- {{ $course->name }} ({{ $course->code }})
@endforeach
@endif
Edit Instructor
Back to Instructors
@endsection