من {{ $data['start_date'] }} إلى {{ $data['end_date'] }}
تاريخ التقرير: {{ now()->format('Y-m-d H:i') }}
| الاسم | البريد الإلكتروني | رقم الهاتف | الجنس | المدينة | عدد الطلبات | إجمالي المدفوع | رسوم التطبيق | تاريخ التسجيل | الحالة |
|---|---|---|---|---|---|---|---|---|---|
| {{ $client->name }} | {{ $client->email }} | {{ $client->phone ?? '-' }} | {{ $client->gender === 'Male' ? 'ذكر' : ($client->gender === 'Female' ? 'أنثى' : '-') }} | {{ $client->city ?? '-' }} | {{ $client->orders_count ?? 0 }} | {{ number_format($client->orders_total ?? 0, 2) }} ر.س | {{ number_format($client->orders_fee ?? 0, 2) }} ر.س | {{ $client->created_at->format('Y-m-d') }} | {{ $client->is_active ? 'نشط' : 'غير نشط' }} |
| لا يوجد عملاء | |||||||||