@extends('layouts.app') @section('title', 'إدارة المشاركين - معرض تجهيزات المساجد') @section('styles') @endsection @section('content')

إدارة المشاركين

إدارة ومتابعة جميع المشاركين في المعرض

آخر تحديث: {{ now()->format('Y-m-d H:i') }}
{{ $participants->count() }}
إجمالي المشاركين
{{ $participants->where('email_verified', true)->count() }}
مؤكدي البريد الإلكتروني
{{ $participants->where('attendance_confirmed', true)->count() }}
مؤكدي الحضور
{{ $participants->whereNotNull('selected_workshop')->count() }}
مسجلين في الورش
البحث والتصفية
تصدير Excel تصدير PDF إرسال دعوات جماعية
قائمة المشاركين ({{ $participants->count() }} مشارك)
@forelse($participants as $index => $participant) @empty @endforelse
# الاسم البريد الإلكتروني الهاتف نوع المشاركة الورشة المختارة حالة التحقق تأكيد الحضور تاريخ التسجيل الإجراءات
{{ $index + 1 }} {{ $participant->first_name }} {{ $participant->last_name }} @if($participant->company)
{{ $participant->company }} @endif
{{ $participant->email }} {{ $participant->phone }} {{ $participant->getParticipationTypeArabic() }} @if($participant->selected_workshop) {{ $participant->selected_workshop }} @else لم يختر @endif @if($participant->email_verified) مؤكد @else في الانتظار @endif @if($participant->attendance_confirmed) مؤكد @else غير مؤكد @endif {{ $participant->created_at->format('Y-m-d') }} @if(!$participant->attendance_confirmed)
@csrf
@endif
لا يوجد مشاركين

لم يتم تسجيل أي مشاركين بعد

@if($participants->hasPages())
{{ $participants->links() }}
@endif @endsection @section('scripts') @endsection