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

Departments Directory

Default and custom operational departments (Reception, Typing, PRO, Cashier, Accounts, HR).

@foreach($departments as $dept)
{{ $dept->name }} {{ $dept->code }}

Branch: {{ $dept->branch ? $dept->branch->name : 'All Branches' }}

@endforeach

Add Department

@csrf
@endsection