@extends('admin.layout') @section('content')

{{ trans('Tickets Report') }}

@include('admin.loader') @php $getUserRoleData = userRoleData(); $LeadSources = explode(",",$getUserRoleData->LeadSources); @endphp
@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
{!! Form::select('updated_by[]', $detailsData['administrator_data'], $updated_by, array('class'=>'form-control', 'id'=>'updated_by', 'multiple'=>'')) !!}
{!! Form::select('search_by_tl[]', $detailsData['administrator_tl'], $search_by_tl, array('class'=>'form-control', 'id'=>'search_by_tl', 'multiple'=>'')) !!}
@if(count((array) $detailsData['administrators_today'])>0) @php $grandTotalInProcess = 0; $grandTotalNew = 0; $grandTotalResolveFollow = 0; $grandTotalpendingClosure = 0; $grandTotalresolved = 0; $grandTotalinputpending = 0; $grandTotalresolved = 0; $grandTotalpendingclosure = 0; $grandTotalStatuses = 0; @endphp @foreach ($detailsData['administrators_today'] as $atVal) @php $grandTotalInProcess += $atVal->InProcess; $grandTotalNew += $atVal->New; $grandTotalResolveFollow += $atVal->ResolveFollow; $grandTotalStatuses += $atVal->TotalStatuses; $grandTotalpendingClosure += $atVal->pendingClosure; $grandTotalresolved += $atVal->resolved; $grandTotalinputpending += $atVal->inputpending; @endphp @endforeach @endif
Agent Name TL Name Status Summary Grand Total
In Process New Resolved Follow up Pending Closure Resolved Input Pending
{{ $atVal->first_name . $atVal->last_name}} {{ $atVal->team_leader_first_name . $atVal->team_leader_last_name }} {{ $atVal->InProcess }} {{ $atVal->New }} {{ $atVal->ResolveFollow }} {{ $atVal->pendingClosure }} {{ $atVal->resolved }} {{ $atVal->inputpending }} {{ $atVal->TotalStatuses }}
Grand Total {{ $grandTotalInProcess }} {{ $grandTotalNew }} {{ $grandTotalResolveFollow }} {{ $grandTotalpendingClosure }} {{ $grandTotalresolved }} {{ $grandTotalinputpending }} {{ $grandTotalStatuses }}
@endsection @section('scripts') @endsection