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

Agent Calls

@php $from = request()->from_date ?? date('Y-m-d'); $to = request()->to_date ?? date('Y-m-d'); @endphp
@foreach($data as $index => $item) @endforeach
# Agent Target Called %ge
{{ $index + 1 }} {{ $item->name}} {{ number_format($item->target) }} {{ number_format($item->total_called) }} {{ number_format($item->percentage,2) }}
Totals {{ number_format($data->sum('target'),2) }} {{ number_format($data->sum('total_called'),2) }}
@endsection @section('script') @endsection