@extends('layouts.admin') @section('title', 'Chatbot — Conversaciones') @section('content')
| ID | Canal | Visitante | Producto | Mensajes | Estado | Último msg | Fecha | Acciones |
|---|---|---|---|---|---|---|---|---|
| #{{ $conv->id }} | @php $icons = ['web' => '🌐', 'whatsapp' => '📱', 'instagram' => '📸', 'facebook' => '👤']; @endphp {{ $icons[$conv->channel] ?? '💬' }} {{ ucfirst($conv->channel) }} | {{ $conv->visitor_name ?? $conv->visitor_phone ?? $conv->visitor_email ?? 'Anónimo' }} | {{ $conv->product_context ?? '-' }} | {{ $conv->messages_count }} | {{ ucfirst($conv->status) }} | {{ $conv->lastMessage?->content ? Str::limit($conv->lastMessage->content, 40) : '-' }} | {{ $conv->created_at->diffForHumans() }} | |
| Sin conversaciones todavía | ||||||||