@include('admin.section.flash_message')
@include('admin.complaint.common.breadcrumb')
| # |
{{ __('index.subject') }} |
{{ __('index.employees') }} |
{{ __('index.complaint_date') }} |
@canany(['show_complaint','delete_complaint','update_complaint'])
{{ __('index.action') }} |
@endcanany
@forelse($complaintLists as $key => $value)
| {{++$key}} |
{{ $value->subject }} |
|
{{ \App\Helpers\AppHelper::formatDateForView($value->complaint_date) }}
|
@can('update_complaint')
-
@endcan
@can('show_complaint')
-
@endcan
@can('delete_complaint')
-
@endcan
|
@empty
|
{{ __('index.no_records_found') }}
|
@endforelse
{{ $complaintLists->appends($_GET)->links() }}
@include('admin.complaint.employee')
@endsection
@section('scripts')
@include('admin.complaint.common.scripts')
@endsection