@extends('admin.layouts.app') @section('title', 'Chat History - ' . ($user->name ?? 'Unknown')) @section('content')

đŸ’Ŧ Chat History

{{ $user->name ?? 'Unknown' }}

← Profil Siswa

Total Chat

{{ $chatHistories->count() }}

Pertanyaan

{{ $chatHistories->count() }}

Jawaban

{{ $chatHistories->count() }}

@forelse($chatHistories->sortBy('created_at') as $chat)

{{ $chat->created_at->format('d/m/Y H:i') }}

Siswa 📤

{{ $chat->prompt }}

Konselor BK đŸ“Ĩ

{{ $chat->response }}

@if(!$loop->last)
@endif @empty

📭 Belum ada chat history untuk siswa ini

@endforelse

â„šī¸ Info: Chat history menunjukkan interaksi siswa dengan Konselor BK AI

@endsection