Complaint Details

@if($complaint->accepted_by != Auth::user()->id && $complaint->rejected_by != Auth::user()->id && $complaint->status != 'rejected' )
@csrf
@elseif($complaint->accepted_by == Auth::user()->id && $complaint->status != 'appointment' && $complaint->status != 'approved' && $complaint->status == 'accept')
@endif @if($complaint->status == 'appointment' && $complaint->appointment_date && $complaint->appointed_date)

Appointment Countdown

📅 Appointment Set On:
{{ $complaint->appointment_date }}
⏳ Appointed For:
{{ $complaint->appointed_date }}
Loading...
@endif

Complaint Information

Application Number {{ $complaint->application_number }}
Customer {{ $complaint->customer->full_name }}
Status {{ ucfirst($complaint->status) }}
Office {{ $complaint->office->name }}
Service {{ $complaint->service->name }}
Description {{ $complaint->description }}
File @if($complaint->file) View File @else No file uploaded @endif
@if($complaint->file) @else

No file uploaded

@endif
Back to Complaints List