@extends('layouts.dashboard') @section('title', 'WhatsApp Logs') @section('page-title', 'WhatsApp Logs') @section('content')
| ID | User | Channel | Phone / Contact | Message | Status | Sent At |
|---|---|---|---|---|---|---|
| {{ $log->id }} | @if($log->user) {{ $log->user->name }} @else N/A @endif |
{{ $log->phone_number }}
@if($log->contact_name)
{{ $log->contact_name }}
@endif
|
{{ Str::limit($log->message, 60) }} | @php $statusClass = match(strtolower($log->status)) { 'sent', 'delivered' => 'bg-success', 'pending' => 'bg-warning', 'failed' => 'bg-danger', default => 'bg-secondary', }; @endphp {{ ucfirst($log->status) }} | {{ $log->sent_at?->format('M d, Y H:i:s') ?? 'N/A' }} | |
| No WhatsApp logs found | ||||||