@extends('admin.layout') @section('title', 'Interpretaciones de IA') @section('page-title', 'AI Yorumları') @section('content')

Kullanıcı AI Yorumları

Kayıtları görüntüleyebilir, düzenleyebilir ve silebilirsiniz.

Temizle
@if ($comments->count() > 0)
@foreach ($comments as $comment) @endforeach
ID Kullanıcı Tür Başlık Harita Sahibi / Kişiler Oluşturulma İşlemler
#{{ $comment->id }} @if ($comment->user)
{{ trim(($comment->user->name ?? '') . ' ' . ($comment->user->last_name ?? '')) ?: '—' }}
{{ $comment->user->email }} @else Kullanıcı bulunamadı (ID: {{ $comment->user_id }}) @endif
{{ $comment->type ?? '—' }}
{{ $comment->title ?: '—' }}
{{ \Illuminate\Support\Str::limit($comment->content, 90) }}
Harita: {{ $comment->chart_owner ?: '—' }}
A: {{ $comment->person_a_name ?: '—' }} / B: {{ $comment->person_b_name ?: '—' }}
{{ $comment->created_at?->format('d.m.Y H:i') ?? '—' }}
@csrf @method('DELETE')
{{ $comments->links() }}
@else

AI yorum kaydı bulunamadı.

@endif
@endsection