@extends('admin.layouts.master2') @section('title', 'Grievance Details - ' . $post->title) @section('content')

Grievance Ticket Details

Submitted {{ $post->created_at ? $post->created_at->format('F d, Y \a\t h:i A') : 'N/A' }}

{{ $post->title }}

{{ $post->title }}

{{ $post->is_read ? 'Reviewed' : 'Pending Review' }}
Your Submitted Complaint Details

{{ $post->body }}

Official Support Responses

@if(isset($post->comments) && count($post->comments) > 0) @include('complain.posts.partials.commentsDisplay', ['comments' => $post->comments, 'post_id' => $post->id]) @else
Your complaint is being reviewed by the academic support desk. Replies will appear here.
@endif

Add Follow-up Message

@csrf
@endsection