@extends('layouts.app') @section('title', 'Communication Overview | Institution Axis') @section('sidebar-menu') @include('schooladmin.partials.sidebar') @endsection @section('breadcrumb') Home / Communication Overview @endsection @section('content')

{{ $stats['total_sms'] }}

Total SMS Sent

{{ $stats['total_email'] }}

Total Emails Sent

{{ $stats['failed_logs'] }}

Failed Deliveries

Recent Communication Logs
New Message
@forelse($recentLogs as $log) @empty @endforelse
Recipient Type Status Date Action
{{ $log->recipient_contact }} @if($log->type == 'SMS') SMS @else Email @endif @if($log->status == 'Success') Success @else Failed @endif {{ $log->created_at->format('M d, Y H:i') }}
No recent logs found.
@endsection @section('custom-scripts') @endsection