id}/".$client->image) : asset('imgs/icons/dummy_user.png') }}" alt="User Image" class="h-24 w-24 rounded-full shadow-md border">

{{ $client->first_name }} {{ $client->last_name }}

Email:
Phone: {{ $client->phone }}

Status: {{ $client->status ? 'Active (Unblocked)' : 'Inactive (Blocked)' }}

Total Posts: {{ $client->total_posts }}

Type: {{ ucfirst($client->type) }}

Google ID: {{ $client->google_id ?? 'N/A' }}

Apple ID: {{ $client->apple_id ?? 'N/A' }}

Facebook ID: {{ $client->facebook_id ?? 'N/A' }}

Email Verified At: {{ $client->email_verified_at ? $client->email_verified_at->format('d/m/Y H:i') : 'Not Verified' }}

Is Premium: {{ $client->is_premium ? 'Yes' : 'No' }}

@csrf

User Ads

@foreach($ads as $index => $ad) @endforeach
# Title Category Type Status Created At
{{ $index + 1 }} {{ $ad['title'] ?? 'N/A' }} {{ $ad['category'] ?? 'N/A' }} {{ $ad['type'] }} {{ $ad['status'] ? 'Active' : 'Inactive' }} {{ $ad['createdAt']->format('d/m/Y') }}