@extends('layouts.dashboard') @section('title', 'المحادثات') @section('content')
| القناة | الرسالة | اللغة | النية | الحالة | التاريخ |
|---|---|---|---|---|---|
| @if($conversation->channel === 'whatsapp') 📱 واتساب @elseif($conversation->channel === 'messenger') 💬 ماسنجر @else 📷 انستغرام @endif |
{{ Str::limit($conversation->text, 60) }} @if($conversation->ai_response)← {{ Str::limit($conversation->ai_response, 50) }} @endif |
{{ $conversation->language ?? '-' }} @if($conversation->dialect) ({{ $conversation->dialect }}) @endif | @if($conversation->detected_intent) {{ $conversation->detected_intent }} @else - @endif | @if($conversation->sent) ✓ تم الإرسال @elseif($conversation->ai_response) ⏳ في الانتظار @else 🔄 قيد المعالجة @endif | {{ $conversation->created_at->format('Y-m-d H:i') }} |
| لا توجد محادثات بعد | |||||