We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi! I'm trying to give points to a user after the user registers. givePoint(new UserRegistered($user)); It does not work. Any idea?
The text was updated successfully, but these errors were encountered:
Do it this way, in UserRegister Method after creating user like this:
$user = User::create([ 'email' => data['email'], 'password' => data['password'], ]);
give point after user is created like this: $user->addPoint(100);
$user->addPoint(100);
Sorry, something went wrong.
No branches or pull requests
Hi!
I'm trying to give points to a user after the user registers.
givePoint(new UserRegistered($user));
It does not work.
Any idea?
The text was updated successfully, but these errors were encountered: