@extends('portal.layouts.app', [ 'class' => '', 'elementActive' => '' ]) @section('title', 'Partner Performance Summary') @section('css') @endsection @section('content')
| # | Partner | Total Contacts | Called | Sent SMS |
|---|---|---|---|---|
| {{ $index + 1 }} | {{ ucfirst($item->category) }} | {{ number_format($item->total_contacts) }} | {{ number_format($item->total_candidates_called) }} | {{ number_format($item->total_candidates_smsed) }} |
| Totals | {{ number_format($data->sum('total_contacts'),2) }} | {{ number_format($data->sum('total_candidates_called'),2) }} | {{ number_format($data->sum('total_candidates_smsed'),2) }} | |