Complaints
My Complaints
Make a complaint about any issue you are facing using the Admissions Checker platform
Total Complaints
{{$tickets->count()}}
{{--17.32 % vs. previous month
--}}Opened Complaints
{{$tickets->where('active',true)->count()}}
{{--0.96 % vs. previous month
--}}Closed Complaints
{{$tickets->where('active',false)->count()}}
{{--3.87 % vs. previous month
--}}Cancelled Complaints
{{$tickets->where('status','cancelled')->count()}}
{{--1.09 % vs. previous month
--}}Complaints Area
| No. | Ticket No. | Issue | Category | Status | State | Created | Action |
|---|---|---|---|---|---|---|---|
| {{$count}} | {{$ticket->ticket_code ?? null}} | {{$ticket->title ?? null}} | {{$ticket->category ?? null}} | @if($ticket->status == "pending") {{ucwords($ticket->status)}} @endif @if($ticket->status == "answered") {{ucwords($ticket->status)}} @endif @if($ticket->status == "cancelled") {{ucwords($ticket->status)}} @endif | @if($ticket->active) Opened @endif @if(!$ticket->active) Closed @endif | {{$ticket->created_at->toDayDateTimeString() ?? null}} |
|