@extends('layouts.app') @section('title', $department->name) @section('header', $department->name) @section('subheader', 'Department details') @section('header-actions') @can('update', $department) Edit @endcan @endsection @section('content')
Name
{{ $department->name }}
Code
{{ $department->code }}
Status
Employees
{{ $department->employees_count ?? $department->employees()->count() }}
Description
{{ $department->description ?: '—' }}
Created
{{ $department->created_at->format('M d, Y') }}
@endsection