@extends('layouts.app') @section('title', $department->name) @section('content')
Department overview & employees
{{ $department->head_name ?? 'Not assigned' }}
{{ $department->head_email ?? 'Email not provided' }}
{{ $department->contact_number ?? '—' }}
{{ $department->description ?? 'No description provided.' }}
| Name | Role | Status | |
|---|---|---|---|
| {{ $employee->name }} | {{ $employee->email ?? '—' }} | {{ ucfirst($employee->role ?? '—') }} | {{ $employee->is_active ? 'Active' : 'Inactive' }} |
| No employees yet. | |||