@extends('layouts.app') @section('title', 'Departments') @section('content')
| Name | Company | Location | Head of Department | Status | Actions |
|---|---|---|---|---|---|
|
{{ $department->name }}
{{ $department->code }}
|
{{ $department->company->name }}
|
{{ $department->location }}
|
@if($department->headOfDepartment)
{{ $department->headOfDepartment->name }}
@else
Not assigned
@endif
|
@if($department->is_active) Active @else Inactive @endif | |
| No departments found. | |||||