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

Site Performance Summary

@foreach($data as $index => $item) @endforeach
# Partner Category Total Contacts Called Sent SMS
{{ $index + 1 }} {{ $item->partner_name }} {{ 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) }}
@endsection @section('script') @endsection