@extends('layouts.master') @section('title',__('index.complaint')) @section('action',__('index.lists')) @section('button') @can('create_complaint') @endcan @endsection @section('main-content')
@include('admin.section.flash_message') @include('admin.complaint.common.breadcrumb')
{{ __('index.complaint_filter') }}
@if(!isset(auth()->user()->branch_id))
@endif
@if(\App\Helpers\AppHelper::ifDateInBsEnabled())
@else
@endif
{{ __('index.reset') }}
{{ __('index.complaint_list') }}
@canany(['show_complaint','delete_complaint','update_complaint']) @endcanany @forelse($complaintLists as $key => $value) @empty @endforelse
# {{ __('index.subject') }} {{ __('index.employees') }} {{ __('index.complaint_date') }}{{ __('index.action') }}
{{++$key}} {{ $value->subject }} {{ \App\Helpers\AppHelper::formatDateForView($value->complaint_date) }}
    @can('update_complaint')
  • @endcan @can('show_complaint')
  • @endcan @can('delete_complaint')
  • @endcan

{{ __('index.no_records_found') }}

{{ $complaintLists->appends($_GET)->links() }}
@include('admin.complaint.employee') @endsection @section('scripts') @include('admin.complaint.common.scripts') @endsection