@extends('layouts.examiner') @section('title', 'Departments') @section('content')

Departments

Add Department
@forelse($departments as $dept) @empty @endforelse
# Department Code Faculty Actions
{{ $loop->iteration }} {{ $dept->name }} {{ $dept->code ?? '—' }} {{ optional($dept->faculty)->name ?? '—' }} Edit
@csrf @method('DELETE')
No departments found
{{ $departments->links() }}
@endsection