@extends('layouts.app') @section('title', 'Company Departments: ' . $company->name) @section('content')
| Name | Code | Head of Department | HSE Officer | Users | Status | Actions |
|---|---|---|---|---|---|---|
|
{{ $department->name }}
@if($department->description)
{{ Str::limit($department->description, 50) }}
@endif
|
{{ $department->code ?? 'N/A' }}
|
{{ $department->headOfDepartment->name ?? 'N/A' }}
|
{{ $department->hseOfficer->name ?? 'N/A' }}
|
{{ $department->users()->count() }}
|
@if($department->is_active) Active @else Inactive @endif | |
| No departments found for this company. | ||||||