@extends("layouts.app") @section("content")

إدارة طلبات تفعيل المضيفين

@include('flash::message')

{{ $countNew }}

طلبات جديدة

عرض التفاصيل

{{ $countInReview }}

تم التحديث (بانتظار المراجعة)

عرض التفاصيل

{{ $countModRequested }}

بانتظار تعديل المضيف

عرض التفاصيل

{{ $countApprovedThisMonth }}

تم التفعيل هذا الشهر

إحصائية شهرية
@if($pendingHosts->count() > 0)
@foreach($pendingHosts as $host) @endforeach
المضيف البريد الإلكتروني رقم الهاتف تاريخ التسجيل الحالة الإجراءات
@if($host->profile_file) Avatar @else @endif
{{ $host->full_name ?? $host->first_name . ' ' . $host->last_name }}
{{ $host->email }} {{ $host->whatsapp_phone ?? $host->contact_no }} {{ $host->created_on->format('Y-m-d') }} @if($host->verification_status === 'in_review') بانتظار المراجعة @elseif($host->verification_status === 'modification_requested') بانتظار المضيف @else طلب جديد @endif مراجعة الملف
@else
لا توجد طلبات معلقة

جميع حسابات المضيفين تمت مراجعتها مسبقاً.

@endif
@if($pendingHosts->hasPages()) @endif
@endsection