laravel-gamify
laravel-gamify copied to clipboard
Gamify your Laravel app with Reputation Points & Achievements Badges support
Hi, I read all documents but still have a problem when I try to populate the meta column in the reputations table while using `$user->givePoint(new PostCreated($post));` could somebody help me...
Hi Guys. I keep getting an error that says QCod\Gamify\Exceptions\InvalidPayeeModel payee() method must return a model which will get the points. Config file: `payee_model' => '\App\Models\User` LeadCreated ``` public function...
How can I turn off the Info Logging, its filling up my log files? [2022-03-03 23:49:38] production.INFO: Broadcasting [QCod\Gamify\Events\ReputationChanged] on channels [private-user.reputation.132] with payload: { "user": { "id": 132, "name":...
Hey, just wondering if this package have been tested with laravel octane.
Trying to broadcast the ReputationChanged event is causing an exception in my app. Any tips to remove it?
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
Not sure if this is 100% the best way of doing this but it has been working in my testing to allow for setting the user via the helper function...
Hi! I'm trying to give points to an user first time after registered. givePoint(new UserRegistered($user)); it work from postman but not from my webapp. Any idea?
Hello, it's not issue but I will ask to you How to call Message after Reach a Badge? I will try with Session::flash()
Payee is not getting the user parameter This is my function ``` undoPoint(new PraiseCreated($praise, $this->task->user)); ``` Even though I pass `$this->task->user` the helper function is getting the authed user, so...