@extends('admin.layouts.master2') @section('title', 'My Grievances') @section('content')

My Result Grievances

Track and monitor the status of your submitted examination complaint tickets.

Submitted Complaint History

{{ count($posts) }} Ticket(s)
@if(count($posts) > 0)
@foreach($posts as $post) @endforeach
# Category / Title Submission Date Status Action
{{ $loop->index + 1 }} {{ $post->title }} {{ $post->created_at ? $post->created_at->format('M d, Y h:i A') : 'N/A' }} Pending Review View
@else

No Grievances Submitted

You have not submitted any result complaint tickets yet. If you have missing or incomplete grades, you can lodge a ticket below.

Lodge New Grievance
@endif
@endsection