{{-- resources/views/instagram/comments/index.blade.php --}} تعليقات إنستقرام

تعليقات إنستقرام

إدارة ومراقبة تعليقات حسابات إنستقرام

{{ number_format($stats['total']) }}
إجمالي التعليقات
{{ number_format($stats['today']) }}
اليوم
{{ number_format($stats['replied']) }}
تم الرد عليها
{{ number_format($stats['not_replied']) }}
بدون رد
{{ number_format($stats['public_replies']) }}
ردود علنية
{{ number_format($stats['private_replies']) }}
رسائل خاصة
التعليقات ({{ $comments->total() }})
@forelse($comments as $comment)
{{ '@' . $comment->commenter_username }}
{{ $comment->timestamp->diffForHumans() }}
{{ '@' . $comment->instagramAccount->username }}
@if($comment->is_hidden) مخفي @endif @if($comment->replied_to) تم الرد @else بدون رد @endif @if($comment->public_reply_sent) رد علني @endif @if($comment->private_reply_sent) رسالة خاصة @endif @if($comment->autoReply) تلقائي @endif

{{ $comment->text }}

@if($comment->public_reply_sent || $comment->private_reply_sent)
@if($comment->public_reply_sent)
رد علني: @if($comment->replied_at) {{ $comment->replied_at->diffForHumans() }} @endif
{{ $comment->public_reply_message }}
@endif @if($comment->private_reply_sent)
رسالة خاصة: @if($comment->replied_at) {{ $comment->replied_at->diffForHumans() }} @endif
{{ $comment->private_reply_message }}
@endif
@endif @if($comment->autoReply)
تم الرد تلقائياً بواسطة: {{ $comment->autoReply->name }}
@endif
@empty
لا توجد تعليقات

لم يتم العثور على تعليقات بالمعايير المحددة

@endforelse
@if($comments->hasPages())
{{ $comments->links() }}
@endif