This commit is contained in:
2026-08-20 18:19:37 +03:30
parent ff946959a5
commit f505180237
+2 -1
View File
@@ -48,7 +48,8 @@ public function handle()
'birthday' => $data['birthday'] ?? $user->birthday, 'birthday' => $data['birthday'] ?? $user->birthday,
'identifier' => $data['uuid'] ?? $user->identifier, 'identifier' => $data['uuid'] ?? $user->identifier,
]); ]);
$this->line(" synced: {$user->mobile}{$data['first_name'] ?? 'null'}"); $name = $data['first_name'] ?? 'null';
$this->line(" synced: {$user->mobile}{$name}");
$synced++; $synced++;
} }
} else { } else {