@extends('layouts.master') @section('title', 'Departments') @section('content')

Departments

Cost centers and practice areas.

{{ isset($records) ? count($records) : 0 }}
Records
← COA Home
Code
Name
Description
Actions
@forelse($records as $department)
{{ $department->code }}
{{ $department->name }}
{{ $department->description ?? '—' }}
@empty
No departments found.
@endforelse
@endsection