@extends('layouts.app') @section('title', 'Reports') @section('page-title', 'Reports & Analytics') @section('content')
@foreach(['total_sent' => ['Sent', 'success', 'bi-arrow-up'], 'total_received' => ['Received', 'info', 'bi-arrow-down'], 'delivered' => ['Delivered', 'primary', 'bi-check-circle'], 'read' => ['Read', 'dark', 'bi-eye'], 'failed' => ['Failed', 'danger', 'bi-x-circle'], 'pending' => ['Pending', 'warning', 'bi-clock']] as $key => [$label, $color, $icon])
{{ $stats[$key] }}
{{ $label }}
@endforeach
Daily Activity
@forelse($dailyStats as $day) @empty @endforelse
DateTotalSentReceived
{{ \Carbon\Carbon::parse($day->date)->format('M d, Y') }} {{ $day->total }} {{ $day->sent }} {{ $day->received }}
No data for this period
By Device
@forelse($deviceStats as $ds)
{{ $ds->name }}
{{ $ds->messages_count }} msgs
@empty
No data
@endforelse
@endsection