@extends('layouts.app') @section('title', 'Departments') @section('header', 'Departments') @section('subheader', 'Manage organisational departments') @section('header-actions')
| Name | Code | Employees | Status | Actions |
|---|---|---|---|---|
|
{{ $department->name }}
@if ($department->description)
{{ Str::limit($department->description, 60) }}
@endif
|
{{ $department->code }} | {{ $department->employees_count ?? 0 }} |
@can('update', $department)
@endcan
@can('delete', $department)
|
|
| No departments found. | ||||