@extends('layouts.app') @section('title', 'Departments') @section('breadcrumbs')
@endsection @section('content')Manage company departments and hierarchy
| Name | Code | Head | Parent | Employees | Status | Actions |
|---|---|---|---|---|---|---|
| {{ $department->name }} | {{ $department->code ?? '—' }} |
@if($department->head)
{{ $department->head->initials }}
{{ $department->head->full_name }}
|
{{ $department->parent?->name ?? '—' }} | {{ $department->employees_count }} | {{ $department->is_active ? 'Active' : 'Inactive' }} |
Are you sure you want to delete ? This action cannot be undone.