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

Problem Category Details

{{ $problemCategory->name }}

{{ $problemCategory->code }}

{{ $problemCategory->description ?: 'No description provided.' }}

{{ $problemCategory->name }}

{{ $problemCategory->status_text }}

{{ $problemCategory->sort_order }}

Additional Information

{{ $problemCategory->creator ? $problemCategory->creator->name : 'Unknown' }}

{{ $problemCategory->created_at->format('M d, Y H:i A') }}

@if($problemCategory->updated_by)

{{ $problemCategory->updater ? $problemCategory->updater->name : 'Unknown' }}

@endif @if($problemCategory->updated_at && $problemCategory->updated_at != $problemCategory->created_at)

{{ $problemCategory->updated_at->format('M d, Y H:i A') }}

@endif
@endsection