@extends('layouts.dashboard') @section('title', 'Department Management') @section('content')
Manage your company departments and their details
Total Departments
{{ $departments->total() }}
Active Departments
{{ \App\Models\Department::where('status', 'active')->count() }}
Inactive Departments
{{ \App\Models\Department::where('status', 'inactive')->count() }}
|
DEPARTMENT
|
EMPLOYEES
|
STATUS
|
CREATED
|
ACTIONS
|
|---|---|---|---|---|
|
{{ $department->name }}
{{ $department->description ?? 'No description' }}
|
{{ $department->users()->count() }} employees | {{ ucfirst($department->status) }} |
{{ $department->created_at->format('M d, Y') }}
{{ $department->created_at->diffForHumans() }}
|