@extends('layouts.app') @section('title', 'View Reseller Complaint Category') @section('content')

Category: {{ $resellerComplaintCategory->name }}

Category Details

{{ $resellerComplaintCategory->name }}


{{ $resellerComplaintCategory->description ?? 'No description provided.' }}

Category Information
@if($resellerComplaintCategory->updatedBy) @endif
Name: {{ $resellerComplaintCategory->name }}
Status: {{ ucfirst($resellerComplaintCategory->status) }}
Created By: {{ $resellerComplaintCategory->createdBy->name ?? 'N/A' }}
Created At: {{ $resellerComplaintCategory->created_at->format('Y-m-d H:i:s') }}
Last Updated By: {{ $resellerComplaintCategory->updatedBy->name }}
Last Updated: {{ $resellerComplaintCategory->updated_at->format('Y-m-d H:i:s') }}
@endsection