@extends('components.app') @section('content')
Histórico de Interações - {{ $agent->name }}
Voltar ao Agente
@if($history->isEmpty())
Nenhuma interação registrada para este agente.
@else
@foreach($history as $item) @endforeach
Data Prompt Resultado (Prévia) Ações
{{ $item->created_at->format('d/m/Y H:i') }}
{{ $item->prompt }}
{{ Str::limit($item->result, 100) }}
Ver Detalhes
{{ $history->links() }}
@endif
@endsection