'Suporte', 'email' => 'suporte@softpar.inf.br', 'password' => 'S@ft2080.', 'type' => UserTypeEnum::ADMIN, ], [ 'name' => 'Usuário Teste', 'email' => 'usuario.teste@softpar.inf.br', 'password' => 'S@ft2080.', 'type' => UserTypeEnum::USER, ], [ 'name' => 'Prestador Teste', 'email' => 'prestador.teste@softpar.inf.br', 'password' => 'S@ft2080.', 'type' => UserTypeEnum::PROVIDER, ], [ 'name' => 'Cliente Teste', 'email' => 'cliente.teste@softpar.inf.br', 'password' => 'S@ft2080.', 'type' => UserTypeEnum::CLIENT, ], ]; foreach ($users as $userData) { User::updateOrCreate( ['email' => $userData['email']], $userData ); } } }