$users = App\Models\User::with('currentPlan')->get();
foreach ($users as $u) {
    echo "User: {$u->name} (ID: {$u->id})\n";
    echo "  Plan: " . ($u->currentPlan->plan_name ?? 'None') . "\n";
    echo "  Lead Limit: " . ($u->currentPlan->lead_limit ?? 'NULL (Unlimited)') . "\n";
    echo "  Leads Received: {$u->leads_received}\n";
    echo "  Contact Limit (VIP): " . ($u->currentPlan->contact_limit ?? '0') . "\n";
    echo "  Contacts Initiated: {$u->contacts_initiated}\n";
    echo "--------------------------------------------------\n";
}
