@extends('layouts.dashboard') @section('title', 'Daily Summary Report') @section('content')
| 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']) }} | |