TL;DR: Need latest message from each sender.
In my Laravel application I have two tables:
Users:
Messages:
Why not simply accessing the messages, like this -
messages
// get the authenticated user $user = \Auth::user(); // find the messages for that user return User::with('message')->find($user->id)->messages;