Customer Complaints

Manage customer complaints and issues

Register Complaint

Total Complaints

{{ $complaints->total() }}

Pending

{{ $complaints->where('status', 'pending')->count() }}

In Progress

{{ $complaints->where('status', 'in_progress')->count() }}

Resolved

{{ $complaints->where('status', 'resolved')->count() }}

@forelse($complaints as $complaint) @empty @endforelse
ID Customer Subject Priority Status Date Actions
#{{ $complaint->id }}
{{ $complaint->customer->name }}
{{ $complaint->customer->phone }}
{{ $complaint->subject }} @if($complaint->priority === 'high') High @elseif($complaint->priority === 'medium') Medium @else Low @endif @if($complaint->status === 'resolved') Resolved @elseif($complaint->status === 'in_progress') In Progress @else Pending @endif {{ $complaint->created_at->format('M d, Y') }}

No complaints found.

{{ $complaints->links() }}