@extends('layouts.branch') @section('title', 'Clinical Departments') @section('header', 'Operational Units') @section('content')
@include('partials.branch._breadcrumbs', [ 'breadcrumbs' => [ ['name' => 'Operational Units', 'url' => route('branch.departments')] ] ])

Department Activation

Enable clinical departments operating at this facility to activate them for registrations and medical staffing.

@foreach($allDepartments as $dept) @endforeach
Unit Information Operational Scope Current Status Actions
{{ substr($dept->name, 0, 1) }}

{{ $dept->name }}

ID: #{{ str_pad($dept->id, 3, '0', STR_PAD_LEFT) }}

{!! $dept->description ?? 'Specialized clinical care unit functioning as a core operational department.' !!}
@endsection