@include('admin.common.meta') @include('admin.common.scripts')

{{ trans('Suspension Report Page') }}

@include('admin.loader')
@if(session()->has('message'))

{{ trans('labels.Successlabel') }}

{{ session()->get('message') }}
@endif @if(session()->has('error'))

{{ trans('labels.WarningLabel') }}

{{ session()->get('error') }}
@endif
Search By: Date Range
@if(count((array) $reports)>0) @foreach ($reports as $atVal) @endforeach @endif
User ID Name Email Role Team Leader Number of Times Suspended Last Suspension
{{ $atVal->administrator->myid }} {{ $atVal->administrator->first_name }} {{ $atVal->administrator->last_name }} {{ $atVal->administrator->email }} {{ $atVal->administrator->roles->RoleName }} {{ $atVal->administrator->teamLeader->first_name ?? '' }} {{ $atVal->administrator->teamLeader->last_name ?? '' }} {{ $atVal->report_count }} {{ \Carbon\Carbon::parse($atVal->created_at)->format('d-m-Y H:i:s') }}