@extends('layouts.app') @section('title', 'Departments') @section('subtitle', 'Manage organizational departments') @section('content')
{{ session('success') }}
{{ session('error') }}
Total Departments
{{ \App\Models\Department::count() }}
Active
{{ \App\Models\Department::where('is_active', true)->count() }}
Total Employees
{{ \App\Models\User::count() }}
Avg per Dept
{{ \App\Models\Department::count() > 0 ? round(\App\Models\User::count() / \App\Models\Department::count(), 1) : 0 }}
| Department | Employees | Status | Actions | ||
|---|---|---|---|---|---|
|
{{ $department->name }}
{{ $department->description ? Str::limit($department->description, 50) : 'No description' }}
|
{{ $department->users_count }} | @if($department->is_active) Active @else Inactive @endif | |||
|
No departments found Start by creating your first department |
|||||