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

Department Details - {{ $department->name }}

View complete department information

Department Information
{{ strtoupper(substr($department->name, 0, 1)) }}
Department Name

{{ $department->name }}

@if($department->isp)
ISP/Branch

{{ $department->isp->name }}

{{ $department->isp->code }}
@endif
Department Code

{{ $department->code }}

Status

{{ $department->is_active ? 'Active' : 'Inactive' }}

Created

{{ $department->created_at->format('M d, Y') }}

{{ $department->created_at->format('h:i A') }}
@if($department->description)
Description

{!! nl2br(e($department->description)) !!}

@endif
Department Head
@if($department->head_name || $department->head_email || $department->head_phone) @if($department->head_name)
{{ strtoupper(substr($department->head_name, 0, 1)) }}
{{ $department->head_name }}
Department Head
@endif @if($department->head_email) @endif @if($department->head_phone) @endif @else

No head information available

@endif
Quick Actions
Edit Department
Statistics
0
Employees
0
Projects
@endsection