laravel-gamify icon indicating copy to clipboard operation
laravel-gamify copied to clipboard

Can't give point to User

Open sahrialardians opened this issue 2 years ago • 1 comments

Hi! I'm trying to give points to a user after the user registers. givePoint(new UserRegistered($user)); It does not work. Any idea?

sahrialardians avatar Sep 09 '22 05:09 sahrialardians

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);

yanikkumar avatar Feb 10 '24 17:02 yanikkumar