App\Transformers\UserTransformer::includeRecentlyReceivedKudosu PHP Method

includeRecentlyReceivedKudosu() public method

public includeRecentlyReceivedKudosu ( User $user )
$user app\models\User
    public function includeRecentlyReceivedKudosu(User $user)
    {
        return $this->collection($user->receivedKudosu()->withPost()->withGiver()->with('post', 'post.topic', 'giver')->orderBy('exchange_id', 'desc')->limit(15)->get(), new KudosuHistoryTransformer());
    }