Add, update, and oversee the university's academic programs.
{{ session('success') }}
| ID {!! sortArrow('id', $sortColumn, $sortDirection) !!} | Program Name {!! sortArrow('program_name', $sortColumn, $sortDirection) !!} | Department {!! sortArrow('department_id', $sortColumn, $sortDirection) !!} | Actions |
|---|---|---|---|
| #{{ str_pad($program->id, 3, '0', STR_PAD_LEFT) }} |
{{ mb_substr($program->program_name, 0, 1) }}
{{ $program->program_name }}
|
@if($program->department)
D
{{ $program->department->department_name_ar }} / {{ $program->department->department_name_en }}
@else
D
Not assigned
@endif
|
@can_do('Programs', 'update')
@endcan_do
@can_do('Programs', 'delete')
@endcan_do
|
No programs found@if(request('search')) We couldn't find anything matching "{{ request('search') }}". @else Get started by creating a new program on the left. @endif @if(request('search')) Clear search → @endif |
|||