'root@example.com'], [ 'name' => 'root', 'password' => Hash::make('Root@123456'), 'is_active' => true, 'email_verified_at' => now(), ], ); User::updateOrCreate( ['email' => 'guxinpei@qq.com'], [ 'name' => 'roog', 'password' => Hash::make('w2021976'), 'is_active' => true, 'email_verified_at' => now(), ], ); } }