@extends('layouts.app') @section('title', 'Social replies') @section('content')

Social replies

Incoming messages and AI-generated replies. Send messages to your webhook POST {{ url('/api/webhook/social-reply') }} with tenant_id, platform, sender_id, message.

Export CSV Filter: All Received Replied Failed Sort: Newest Oldest Platform Status

Message history

@forelse($replies as $r) @empty @endforelse
Platform Sender Message AI response Status Date
{{ ucfirst($r->platform) }} {{ $r->sender_id ?? '—' }} {{ Str::limit($r->message ?? '', 80) }} {{ Str::limit($r->ai_response ?? '', 80) }} {{ $r->status }} {{ $r->created_at->format('M j, Y H:i') }}
No messages yet.
@if($replies->hasPages()) @endif
@endsection