| {{ $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') }} |
@empty