@extends('layouts.app') @section('title', 'Department Management') @section('content')

Departments

Manage ticket departments

@forelse($departments as $department) @empty @endforelse
Order Name Description Users Tickets Status Actions
{{ $department->sort_order }}
{{ $department->name }}
{{ $department->description ?? '-' }}
{{ $department->users_count }} users {{ $department->tickets_count }} tickets
@if($department->users_count == 0 && $department->tickets_count == 0)
@csrf @method('DELETE')
@endif
No departments found. Create your first department to get started.
@endsection