@extends('portal.layouts.app', [ 'class' => '', 'elementActive' => '' ]) @section('title', 'Agent Performance Summary') @section('css') @endsection @section('content')

Agent Performance Summary

@foreach($data as $index => $item) @endforeach
# Agent Total Contacts Called Sent SMS Call %ge
{{ $index + 1 }} {{ $item->agent_name }} {{ number_format($item->total_candidates_assigned) }} {{ number_format($item->total_candidates_called) }} {{ number_format($item->total_candidates_smsed) }} {{ number_format($item->performance_percentage,2) }}
Totals {{ number_format($data->sum('total_candidates_assigned'),2) }} {{ number_format($data->sum('total_candidates_called'),2) }} {{ number_format($data->sum('total_candidates_smsed'),2) }}
@endsection @section('script') @endsection