cybercog / laravel-love

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 other custom emotion types. Do you react?

Home Page:https://komarev.com/sources/laravel-love

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to get all users that has reacted to a post ?

antonkomarev opened this issue · comments

How to get all users that has reacted to a post ?

Originally posted by @alkaou in #125 (comment)

$reactions = $post->viaLoveReactant()->getReactions();

foreach ($reactions as $reaction) {
    $user = $reaction->getReacter()->getReactable();
    dump($user);
}