@extends('layouts.app') @section('title', 'Chatbot AI — Log & Monitoring') @section('content')
Pantau performa dan respons AI chatbot secara realtime
Log akan muncul setelah chatbot aktif menerima pesan
| Waktu | Kontak | Intent | Pesan User | Respons AI | Waktu (ms) | Status |
|---|---|---|---|---|---|---|
| {{ $log->created_at->locale('id')->isoFormat('D MMM, HH:mm') }} | @if($log->conversation?->contact) {{ $log->conversation->contact->name }} @elseif($log->conversation) {{ $log->conversation->wa_number }} @else — @endif | {{ $log->intent ?? 'general' }} |
{{ Str::limit($log->user_input, 50) }}
|
{{ Str::limit($log->ai_response, 50) }}
|
@if($log->response_ms) {{ number_format($log->response_ms) }}ms @else — @endif | @if($log->escalated) Eskalasi @else OK @endif |
Belum ada data
@else