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

Grievance Ticket #{{ $post->id }}

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

{{ $post->title }}

{{ $post->title }}

{{ $post->user->username ?? 'Student' }}
Student Inquiry Details

{{ $post->body }}

Resolution Thread

@if(isset($post->comments) && count($post->comments) > 0) @include('complain.posts.partials.commentsDisplay', ['comments' => $post->comments, 'post_id' => $post->id]) @else
No replies have been recorded on this ticket yet.
@endif

Send Official Response

@csrf
@endsection