Use without Badge If your app doesn't need Badges you should just use HasReputations trait instead of Gamify.
smta2017 opened this issue · 1 comments
smta2017 commented
when i replace "Gamify" with "HasReputations" trait in user model to us Reputations only it give to me issue because it asking for
"Call to undefined method App\User::syncBadges()"
please help
mulder2222 commented
I run into the same problem. You can "fix" this by adding the syncBadges method into the model you are the using the HasReputations trait.
class User extends Authenticatable
{
use HasReputations;
public function syncBadges($user = null)
{
}
}