add web_notifications and email_notifications value to admin user in seeders

This commit is contained in:
2026-03-26 09:05:40 +01:00
parent 1f6f280958
commit 32607f32d8
2 changed files with 6 additions and 2 deletions
+3 -1
View File
@@ -25,7 +25,9 @@ class DevSeeder extends Seeder
'password' => bcrypt(config('app.admin_password')),
'phone' => config('app.admin_phone'),
'role' => 1,
'validate' => 1
'validate' => 1,
'web_notifiactions' => 1,
'email_notifications' => 1,
]
);
+3 -1
View File
@@ -23,7 +23,9 @@ class ProdSeeder extends Seeder
'password' => bcrypt(config('app.admin_password')),
'phone' => config('app.admin_phone'),
'role' => 1,
'validate' => 1
'validate' => 1,
'web_notifiactions' => 1,
'email_notifications' => 1,
]
);