@extends('layouts.admin-simple') @section('title', 'Department Management') @section('page-title', 'Department Management') @section('breadcrumb') @endsection @section('page-actions')
@endsection @section('content')

Departments

Manage organizational departments
@forelse($departments as $department) @empty @endforelse
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 found

Start by creating your first department.

@endsection @section('modals') @foreach($departments as $department) @if($department->users_count == 0) @endif @endforeach @endsection @push('scripts') @endpush