$email, 'password' => $password, 'admin' => $admin ], [ 'email' => 'required|email|unique:users,email', 'password' => 'required|regex:((?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{8,})', 'admin' => 'required|boolean' ]); // Run validator, throw catchable and displayable exception if it fails. // Exception includes a JSON result of failed validation rules. if ($validator->fails()) { throw new DisplayValidationException($validator->errors()); } $user = new User; $uuid = new UuidService; $user->uuid = $uuid->generate('users', 'uuid'); $user->email = $email; $user->password = Hash::make($password); $user->root_admin = ($admin) ? 1 : 0; try { $user->save(); return $user->id; } catch (\Exception $ex) { throw $e; } } /** * Updates a user on the panel. * * @param integer $id * @param array $user An array of columns and their associated values to update for the user. * @return boolean */ public function update($id, array $user) { if(array_key_exists('password', $user)) { $user['password'] = Hash::make($user['password']); } return User::find($id)->update($user); } /** * Deletes a user on the panel, returns the number of records deleted. * * @param integer $id * @return integer */ public function delete($id) { return User::destroy($id); } }