perbaikan seeder

This commit is contained in:
NoBody313
2025-04-20 10:16:34 +07:00
parent 35e675bb5d
commit ed14fc0a98
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -13,8 +13,8 @@ class AdminSeeder extends Seeder
Admin::create([
'id' => Str::uuid()->toString(),
'name' => 'Admin Monitoring',
'email' => 'admin@monitoring.com',
'password' => bcrypt('monitoring123'),
'email' => 'superadminMonitoring@humicengineering.com',
'password' => bcrypt('SuperAdminMonitoringHumic#123'),
'email_verified_at' => now(),
'remember_token' => Str::random(10),
]);
+3 -3
View File
@@ -12,9 +12,9 @@ class UserSeeder extends Seeder
{
User::create([
'id' => Str::uuid()->toString(),
'name' => 'Test User',
'email' => 'test@example.com',
'password' => bcrypt('password'),
'name' => 'Super Admin Humic',
'email' => 'superadmin@humicengineering.com',
'password' => bcrypt('SuperAdminHumic#1'),
'email_verified_at' => now(),
'remember_token' => Str::random(10),
]);