@extends('layouts.app') @section('title', 'WhatsApp Messages Report') @section('page-title', 'WhatsApp Messages Report') @section('breadcrumb', 'Insights / Messenger / WhatsApp Messages') @section('content')
@if($records->count())
@foreach($records as $row) @endforeach
CampaignSentDelivered ReadFailedDateStatus
{{ $row->title }} {{ ($row->sent_at ?? $row->scheduled_at)?->format('M d, Y') ?? '—' }} {{ ucfirst($row->status) }}
{{ $records->links() }}
@else @endif
@endsection