laravel-love
laravel-love copied to clipboard
Add Social Reactions to Laravel Eloquent Models. It lets people express how they feel about the content. Fully customizable Weighted Reaction System & Reaction Type System with Like, Dislike and any o...
In my application I have about 10k reacters and 25k reactants. If my love_reactions table is completely empty, issuing the recount command still takes an incredibly long time.. almost 1...
This package looks absolutely terrific, and it will no doubt solve the needs of many, including me :) However, the lack of a basic tutorial is really hindering me (and...
I've started having some serious issues and I'm having a heck of a time troubleshooting and find the cause. This is what my query looks like: ``` $query = User::query()...
Scope joinReactionCounterOfType not working when used with select Logs: ``` Comment::select('comments.name')->joinReactionCounterOfType('Like')->orderBy('reaction_like_count', 'desc')->get(); Illuminate\Database\QueryException SQLSTATE[42S22]: Column not found: 1054 Unknown column 'reaction_like_count' in 'order clause' (Connection: mysql, SQL: select `comments.name` from...
- Follow up #247 - Follow up #248
This code may lead to float issues. ```php $totalWeight += $counter->getWeight(); ```
- Fixes #154 This fix will prevent double-save Reacterable|Reactable models.
Hi @antonkomarev, this PR is to demonstrate some breaks that are happening when the `joinReactionCounterOfType` is called with the `withCount` method on morphable relations. The issue is not apparent when...