|
|
@@ -14,9 +14,9 @@ class UserSeeder extends Seeder
|
|
|
public function run(): void
|
|
|
{
|
|
|
$user = User::firstOrNew([
|
|
|
- 'name' => 'suporte',
|
|
|
- 'email' => 'suporte@softpar.inf.br',
|
|
|
- 'password' => bcrypt('S@ft2080.'),
|
|
|
+ 'name' => 'admin',
|
|
|
+ 'email' => 'admin@admin.com',
|
|
|
+ 'password' => bcrypt('admin'),
|
|
|
'type' => UserTypeSource::Admin,
|
|
|
]);
|
|
|
|