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

Departments

Add Department
@include('partials.alerts')
@forelse($departments as $department) @empty @endforelse
Name Head Contact Employees Actions
{{ $department->name }} {{ $department->head_name ?? '—' }}
{{ $department->head_email ?? '' }}
{{ $department->contact_number ?? '—' }} {{ $department->employees_count }}
@csrf @method('DELETE')
No departments configured.
@if($departments->hasPages()) @endif
@endsection