@extends('layouts.app') @section('content')

Departments Management

Organize and manage organizational departments with comprehensive oversight

{{ count($departments) }}
Total Departments
{{ count($departments) * 15 }}
Estimated Employees
{{ count($departments) }}
Active Departments
100%
Operational Rate
Departments Directory
@foreach ($departments as $department) {{-- Edit Modal --}} {{-- Delete Modal --}} @endforeach
ID Department Name Description Actions
{{ $loop->iteration }}
{{ $department->name }}
{{ $department->description ?? 'No description available' }}
@if(method_exists($departments, 'links'))
{{ $departments->links() }}
@endif @endsection