@extends('layouts.app')
@section('title', 'Departments')
@section('content')
@include('partials.alerts')
| Name |
Head |
Contact |
Employees |
Actions |
@forelse($departments as $department)
| {{ $department->name }} |
{{ $department->head_name ?? '—' }}
{{ $department->head_email ?? '' }}
|
{{ $department->contact_number ?? '—' }} |
{{ $department->employees_count }} |
|
@empty
| No departments configured. |
@endforelse
@if($departments->hasPages())
@endif
@endsection