الإحصائيات

{{ __('الإحصائيات') }}

{{ '@' . $account->username }}

{{ __('رجوع') }}

{{ number_format($stats['total_received']) }}

{{ __('رسائل مستلمة') }}

{{ number_format($stats['total_replied']) }}

{{ __('ردود مرسلة') }}

{{ number_format($stats['total_matches']) }}

{{ __('مطابقات') }}

{{ $stats['reply_rate'] }}%

{{ __('معدل الرد') }}

{{ __('إحصائيات الكلمات المفتاحية') }}

@if($keywordStats->isEmpty())

{{ __('لا توجد إحصائيات') }}

{{ __('لم يتم تسجيل أي تفاعلات بعد') }}

@else
@foreach($keywordStats as $stat) @php $successRate = $stat->total_matches > 0 ? round(($stat->total_replies / $stat->total_matches) * 100, 1) : 0; @endphp @endforeach
{{ __('الكلمة المفتاحية') }} {{ __('عدد المطابقات') }} {{ __('الردود المرسلة') }} {{ __('معدل النجاح') }}
{{ $stat->keyword->keyword ?? __('غير معروف') }} @if($stat->keyword && $stat->keyword->reply_type === 'buttons') {{ __('أزرار') }} @endif
{{ number_format($stat->total_matches) }} {{ number_format($stat->total_replies) }}
@if($successRate >= 20) {{ $successRate }}% @endif
@if($successRate < 20) {{ $successRate }}% @endif
@endif