@extends('layouts.admin') @section('title', 'SMS Reports') @section('page-title', 'SMS Reports') @section('content')
SMS Reports
Total SMS
{{ $stats['total_sms'] }}
Delivered
{{ $stats['delivered'] }}
Pending
{{ $stats['pending'] }}
Failed
{{ $stats['failed'] }}
@foreach($smsLogs as $sms) @endforeach
ID User Sender ID Recipients Message Cost Status Date
{{ $sms->id }}
{{ strtoupper(substr($sms->user->name, 0, 1)) }}
{{ $sms->user->name }}
{{ $sms->sender_id }} {{ $sms->message_count }} {{ Str::limit($sms->message, 50) }} ৳{{ number_format($sms->cost, 2) }} @php $statusClass = [ 'sent' => 'success', 'delivered' => 'primary', 'failed' => 'danger', 'pending' => 'warning' ][$sms->status] ?? 'secondary'; @endphp {{ ucfirst($sms->status) }} {{ $sms->created_at->format('M j, Y H:i') }}
Showing {{ $smsLogs->firstItem() }} to {{ $smsLogs->lastItem() }} of {{ $smsLogs->total() }} records
{{ $smsLogs->links() }}
@endsection @push('scripts') @endpush