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

{{ $department->name }}

Department #{{ $department->id }}
Edit
@csrf @method('DELETE')
Active
{{ $department->is_active ? 'Yes' : 'No' }}
Description
{{ $department->description ?? '-' }}
@endsection