تقرير العملاء

تاريخ التقرير: {{ now()->format('Y-m-d H:i') }}
@forelse($clients as $client) @empty @endforelse
الاسم الكامل البريد الإلكتروني رقم الهاتف المدينة الجنس الحالة رصيد النقاط الباقة الحالية تاريخ انتهاء الاشتراك تاريخ التسجيل
{{ $client->name }} {{ $client->email }} {{ $client->phone ?? '-' }} {{ $client->city ?? '-' }} @if($client->gender === 'Male') ذكر @elseif($client->gender === 'Female') أنثى @else - @endif {{ $client->is_active ? 'نشط' : 'غير نشط' }} {{ $client->points_balance ?? 0 }} نقطة @if($client->active_subscription && $client->active_subscription->package) {{ $client->active_subscription->package->getTranslation('name', 'ar') }} @else - @endif @if($client->active_subscription && $client->active_subscription->end_date) {{ $client->active_subscription->end_date->format('Y-m-d') }} @else - @endif {{ $client->created_at->format('Y-m-d') }}
لا توجد بيانات للعرض