Add, update, and oversee the university's academic colleges.
{{ session('success') }}
| ID {!! sortArrow('id', $sortColumn, $sortDirection) !!} | College Name {!! sortArrow('college_name_en', $sortColumn, $sortDirection) !!} | Leadership {!! sortArrow('dean_id', $sortColumn, $sortDirection) !!} | Departments {!! sortArrow('departments_count', $sortColumn, $sortDirection) !!} | Actions |
|---|---|---|---|---|
| #{{ str_pad($college->id, 3, '0', STR_PAD_LEFT) }} |
{{ mb_substr($college->college_name_en, 0, 1) }}
{{ $college->college_name_en }}
{{ $college->college_name_ar }}
|
@if($college->dean)
D
{{ $college->dean->teacher_name_ar ?: $college->dean->teacher_name_en }}
@if($college->dean->phone)
{{ $college->dean->phone }}
@endif
@else
D
Not assigned
@endif
@if($college->viceDean)
V
{{ $college->viceDean->teacher_name_ar ?: $college->viceDean->teacher_name_en }}
@if($college->viceDean->phone)
{{ $college->viceDean->phone }}
@endif
@endif
|
@if($college->departments_count > 0) {{ $college->departments_count }} @else 0 @endif |
@can_do('Colleges', 'update')
@endcan_do
@can_do('Colleges', 'delete')
@endcan_do
|
No colleges found@if(request('search')) We couldn't find anything matching "{{ request('search') }}". @else Get started by creating a new college on the left. @endif @if(request('search')) Clear search → @endif |
||||