@extends('adminlte::page') @section('title', 'Departments') @section('content_header')

Departments

@stop @section('content')
@can('create departments') Add Department @endcan @if(session('success'))
{{ session('success') }}
@endif
@forelse($departments as $dept) @empty @endforelse
# Name Head Requires 7 Subjects for Ranking Actions
{{ $loop->iteration + ($departments->currentPage() - 1) * $departments->perPage() }} {{ $dept->name }} {{ $dept->head?->name ?? '-' }} @if($dept->rank_requires_7_subjects) Yes @else No @endif @can('edit departments') Edit @endcan @can('delete departments')
@csrf @method('DELETE')
@endcan
No departments found.
{{ $departments->links() }}
@stop