{{-- resources/views/instagram/auto-replies/show.blade.php --}} تفاصيل الرد التلقائي - {{ $autoReply->name }}

{{ $autoReply->name }}

{{ $autoReply->instagramAccount->username }} {{ $autoReply->created_at->format('d/m/Y') }}

العودة للقائمة تعديل
@csrf
المعلومات الأساسية
{{ $autoReply->name }}
{{ '@' . $autoReply->instagramAccount->username }}
{{ $autoReply->instagramAccount->getDisplayName() }}
@if($autoReply->description)
{{ $autoReply->description }}
@endif
{{ $autoReply->getTriggerTypeText() }}
{!! $autoReply->getStatusBadge() !!}
@if($autoReply->post_id)
{{ $autoReply->post_id }} عرض المنشور
@endif
@if($autoReply->trigger_type === 'keywords' && !empty($autoReply->keywords))
الكلمات المفتاحية
@foreach($autoReply->keywords as $keyword) {{ $keyword }} @endforeach
سيتم تفعيل الرد التلقائي عند وجود أي من هذه الكلمات في التعليق
@endif
رسائل الرد
@if($autoReply->reply_message)
الرد العلني سيظهر كتعليق

{{ $autoReply->reply_message }}

@endif @if($autoReply->private_message)
الرسالة الخاصة سيتم إرسالها خاصة

{{ $autoReply->private_message }}

@endif
إحصائيات الاستخدام
{{ $autoReply->usage_count }}
إجمالي الاستخدام
{{ $autoReply->max_replies ?? '∞' }}
الحد الأقصى
{{ $autoReply->delay_seconds }}s
تأخير الرد
@if($autoReply->last_used_at)
آخر استخدام
{{ $autoReply->last_used_at->format('d/m/Y H:i') }}
{{ $autoReply->last_used_at->diffForHumans() }}
@else
لم يتم الاستخدام بعد
@endif
الإعدادات المتقدمة
منع الردود المكررة
عدم الرد على نفس المعلق مرتين
@if($autoReply->prevent_duplicate_replies) مفعل @else معطل @endif
@if($autoReply->max_replies)
الحد الأقصى للردود
عدد الردود المسموح
{{ $autoReply->max_replies }}
@endif
تأخير الرد
الوقت قبل إرسال الرد
@if($autoReply->delay_seconds == 0) فوري @else {{ $autoReply->delay_seconds }} ثانية @endif
@if($autoReply->scheduled_start || $autoReply->scheduled_end)
الجدولة الزمنية
@if($autoReply->scheduled_start) @php $startLocal = \App\Helpers\TimeHelper::toUserTimezone($autoReply->scheduled_start, auth()->user()->timezone ?? 'UTC'); @endphp
تاريخ البداية
{{ $startLocal->format('d/m/Y H:i') }}
{{ $startLocal->diffForHumans() }}
@endif @if($autoReply->scheduled_end) @php $endLocal = \App\Helpers\TimeHelper::toUserTimezone($autoReply->scheduled_end, auth()->user()->timezone ?? 'UTC'); @endphp
تاريخ النهاية
{{ $endLocal->format('d/m/Y H:i') }}
{{ $endLocal->diffForHumans() }}
@endif
@if($autoReply->isScheduledActive())
الجدولة نشطة حالياً
@else
خارج وقت الجدولة
@endif
@endif
تعديل الرد التلقائي
@csrf