Feat: add Ids and phone nos.
This commit is contained in:
@@ -27,6 +27,10 @@ class UsersTableSeeder extends Seeder
|
||||
'email' => 'user' . $i . '@example.com', // Unique email
|
||||
'email_verified_at' => null, // Email not verified
|
||||
'password' => Hash::make('password123'), // Default hashed password
|
||||
'orcid_id' => sprintf('%04d-%04d-%04d-%04d', rand(1000, 9999), rand(1000, 9999), rand(1000, 9999), rand(1000, 9999)), // Fake ORCID iD
|
||||
'scopus_id' => rand(10000000000, 99999999999), // Random 11-digit Scopus ID
|
||||
'mobile_no' => '+91' . rand(6000000000, 9999999999), // Random Indian mobile number
|
||||
'extension' => rand(1000, 9999), // 4-digit extension
|
||||
'remember_token' => null, // Null for remember token
|
||||
]);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user