Update user registration email format, remove unused SMS helper function, and adjust database migration for user meta column

This commit is contained in:
2025-09-22 16:50:01 +05:00
parent f14defeebd
commit baf23d4124
12 changed files with 264 additions and 30 deletions

View File

@@ -40,7 +40,7 @@ class Register extends BaseRegister
protected function mutateFormDataBeforeRegister(array $data): array
{
$data['phone_number'] = str_replace(' ', '', $data['phone_number']);
$data['email'] = $data['phone_number'] . '@telekechi.com';
$data['email'] = $data['phone_number'].'@telekechi.com';
return $data;
}