This commit is contained in:
Saufi
2026-05-19 09:53:36 +08:00
parent f39eca4b1c
commit b0eec13d5b
22 changed files with 1166 additions and 238 deletions

View File

@@ -11,14 +11,14 @@ class AdminSeeder extends Seeder
public function run(): void
{
User::firstOrCreate(
['email' => 'admin@mbip.gov.my'],
['email' => 'saufi@mbip.gov.my'],
[
'name' => 'Admin eCert MBIP',
'password' => Hash::make('Admin@MBIP2025!'),
'password' => Hash::make('YongTauFu26'),
'role' => 'super_admin',
]
);
$this->command->info('Admin account created: admin@mbip.gov.my / Admin@MBIP2025!');
$this->command->info('Admin account created: saufi@mbip.gov.my / YongTauFu26');
}
}