@extends('layouts.admin') @section('page-title', 'Departments') @section('content')
Manage company departments
| Name | Head | Employees | Status | Actions |
|---|---|---|---|---|
|
{{ $department->name }} |
{{ $department->head->name ?? 'Not Assigned' }} | {{ $department->employees_count ?? 0 }} | {{ ucfirst($department->status) }} | |
|
No departments found Get started by adding your first department. Add Department |
||||