@extends('layouts.app', ['pageSlug' => 'complaintList'])
@section('content')
# |
Customer |
Type |
Status |
@foreach($queues as $key=>$queue)
{{$index++}} |
{{$queue->username}} |
|
|
@endforeach
# |
Customer |
Type |
Status |
Date |
Action |
@foreach($complaints as $key=>$complain)
@if($complain->status == 'pending')
{{$index++}} |
{{$complain->username}} |
|
|
{{formatYmd($complain->created_at)}} |
|
@endif
@endforeach
# |
Customer |
Type |
Status |
Date |
Action |
@foreach($complaints as $key=>$complain)
@if($complain->status == 'closed')
{{$index++}} |
{{$complain->username}} |
|
|
{{formatYmd($complain->created_at)}} |
|
@endif
@endforeach
@endsection
@push('js')
@endpush