@extends('layouts.app') @section('title', 'View Reseller Complaint Category') @section('content')
{{ $resellerComplaintCategory->description ?? 'No description provided.' }}
| 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') }} |