@extends('client.layouts.dashboard') @section('title', 'SMS Logs') @section('styles') @endsection @section('content')
View and analyze all SMS auto-replies sent by your organization's users
| User | Phone Number | Message Type | Status | Direction | Time |
|---|---|---|---|---|---|
|
{{ strtoupper(substr($log->user->name ?? 'U', 0, 1)) }}
{{ $log->user->name ?? 'Unknown' }}
|
{{ $log->phone_number }}
@if($log->contact_name){{ $log->contact_name }}@endif |
@if($log->sms_type === 'auto_reply')Auto Reply @elseif($log->sms_type === 'promotion')Promotion @else{{ ucfirst(str_replace('_',' ',$log->sms_type ?? 'unknown')) }}@endif | @if($log->status === 'sent')Sent @elseif($log->status === 'pending')Pending @elseFailed@endif | @if($log->sms_type === 'incoming')Incoming @elseOutgoing@endif |
{{ $log->created_at->format('M d, Y') }}
{{ $log->created_at->format('h:i A') }} |
|
No SMS logs found |
|||||