@extends('layouts.dashboard') @section('title', 'Daily Summary Report') @section('content')

Daily Summary Report

@if($canExport) Export to Excel @endif
@if(isset($clients) && $clients->count() > 0)
@endif

{{ number_format($summary['total_calls']) }}

Total Calls

{{ number_format($summary['total_sms']) }}

Total SMS

{{ number_format($summary['total_promotions']) }}

Promotions

{{ number_format($summary['total_sessions']) }}

Sessions

{{ number_format($summary['total_new_users']) }}

New Users

{{ $summary['avg_daily_calls'] }}

Avg Daily Calls
Activity Trend
Daily Breakdown
@forelse($report as $day) @empty @endforelse
Date Day Calls SMS Promotions Sessions New Users Total Activity
{{ $day['date'] }} {{ $day['day_name'] }} {{ number_format($day['calls']) }} {{ number_format($day['sms']) }} {{ number_format($day['promotions']) }} {{ number_format($day['sessions']) }} {{ number_format($day['new_users']) }} {{ number_format($day['calls'] + $day['sms'] + $day['promotions'] + $day['sessions']) }}
No data found for the selected criteria.
Total {{ number_format($summary['total_calls']) }} {{ number_format($summary['total_sms']) }} {{ number_format($summary['total_promotions']) }} {{ number_format($summary['total_sessions']) }} {{ number_format($summary['total_new_users']) }} {{ number_format($summary['total_calls'] + $summary['total_sms'] + $summary['total_promotions'] + $summary['total_sessions']) }}
@push('scripts') @endpush @endsection