@extends('layouts.student') @section('title','Grievance Detail') @section('breadcrumb')@endsection @section('student-content')
{{ $grievance->subject }}
{{ ucfirst(str_replace('_',' ',$grievance->status)) }}

{{ $grievance->description }}

Submitted on {{ $grievance->created_at->format('d M Y h:i A') }}
@forelse($grievance->responses as $r)

{{ $r->response }}

By {{ optional($r->respondedBy)->name }} — {{ $r->created_at->format('d M Y h:i A') }}
@empty
No responses yet. Please wait for the admin to respond.
@endforelse Back
@endsection