@extends('backend.layouts.main') @section('title') Department Details @endsection @section('content')

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

Basic Information

ID:
{{ $department->id }}
Name:
{{ $department->name }}
Display Order:
{{ $department->display_order }}

Additional Details

Status:
@if ($department->is_published) Published @else Draft @endif
Created At:
{{ $department->created_at->format('M d, Y H:i') }}
Updated At:
{{ $department->updated_at->format('M d, Y H:i') }}
@endsection