This commit is contained in:
2025-03-07 00:45:33 -06:00
parent 4679a0f9b9
commit 7409771872
7 changed files with 68 additions and 229 deletions

View File

@ -31,7 +31,7 @@ class UserSeeder extends Seeder
// Super admin
$user = User::create([
'name' => 'Koneko Admin',
'email' => 'arturo@koneko.mx',
'email' => 'sadmin@koneko.mx',
'email_verified_at' => now(),
'password' => bcrypt('LAdmin123'),
'status' => User::STATUS_ENABLED,
@ -58,14 +58,14 @@ class UserSeeder extends Seeder
'koneko-03.png'
));
// Almacenista
// Auditor
$user = User::create([
'name' => 'Almacenista',
'email' => 'almacenista@koneko.mx',
'name' => 'Auditor',
'email' => 'auditor@koneko.mx',
'email_verified_at' => now(),
'password' => bcrypt('LAdmin123'),
'status' => User::STATUS_ENABLED,
])->assignRole('Almacenista');
])->assignRole('Auditor');
$avatarImageService->updateProfilePhoto($user, new UploadedFile(
'public/vendor/vuexy-admin/img/logo/koneko-03.png',