@extends('layouts.app') @section('title', 'تقرير الحملة') @section('page_title', 'تقرير الحملة — ' . $campaign->name) @section('page_subtitle', 'النوع: ' . (\App\Models\Campaign::TYPES[$campaign->type] ?? '') . ' | الحالة: ' . (\App\Models\Campaign::STATUSES[$campaign->status] ?? '')) @section('content')
{{ $campaign->calls_count }}
إجمالي المكالمات
{{ $campaign->leads_count }}
أرقام القوائم
{{ $campaign->target_calls }}
الهدف
{{ $campaign->progress() }}%
نسبة الإنجاز
توزيع حالات المكالمات
@foreach ($byStatus as $status => $total) @endforeach
{{ \App\Models\Call::STATUSES[$status] ?? $status }} {{ $total }}
أداء الموظفين في الحملة
@forelse ($byAgent as $row) @empty @endforelse
الموظفالمكالماتزمن الكلام
{{ $row->agent?->name ?? '—' }} {{ $row->total }} {{ gmdate('H:i:s', (int) $row->talk) }}
لا توجد بيانات
نتائج الاتصال
@forelse ($byDisposition as $row) @empty @endforelse
النتيجةالتصنيفالعدد
{{ $row->name }} {{ \App\Models\Disposition::CATEGORIES[$row->category] ?? $row->category }} {{ $row->total }}
لا توجد نتائج مسجلة
@endsection @push('scripts') @endpush