@extends('layouts.admin-simple') @section('title', 'Department Management') @section('page-title', 'Department Management') @section('breadcrumb')
| Department | Code | Manager | Users | Status | Actions |
|---|---|---|---|---|---|
|
{{ $department->name }}
@if($department->description)
{{ $department->description }}
@endif
|
{{ $department->code ?? '-' }} |
@if($department->manager_name)
{{ $department->manager_name }}
@if($department->manager_email)
{{ $department->manager_email }}
@endif
@else
-
@endif
|
{{ $department->users_count }} users | @if($department->is_active) Active @else Inactive @endif | |
|
business
No departments foundStart by creating your first department. |
|||||