Add, update, and oversee the university's academic courses.
{{ session('success') }}
| ID {!! $sortArrow('id') !!} | Code {!! $sortArrow('course_code') !!} | Name {!! $sortArrow('course_name_en') !!} | Hours {!! $sortArrow('credit_hours') !!} | Type | Department {!! $sortArrow('department_id') !!} | Coordinator {!! $sortArrow('coordinator_id') !!} | Description | |
|---|---|---|---|---|---|---|---|---|
| #{{ str_pad($course->id, 3, '0', STR_PAD_LEFT) }} | {{ $course->course_code }} |
{{ $course->course_name_en }}
{{ $course->course_name_ar }}
|
{{ $course->credit_hours }} |
@if($course->is_practical)
Practical
@else
Theoretical
@endif
@if($course->is_general)General@endif
|
@if($course->department) {{ $course->department->department_name_ar ?: $course->department->department_name_en }} @else Not assigned @endif | @if($course->coordinator) {{ $course->coordinator->teacher_name_ar ?: $course->coordinator->teacher_name_en }} @else Not assigned @endif |
@can_do('Plans', 'update')
@endcan_do
@can_do('Plans', 'delete')
@endcan_do
|
@if($course->description) @else — @endif |
| No courses found. | ||||||||