Guest User

Untitled

a guest
Jul 16th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. $results = LikeUserPostRelationship::with('post')
  2. ->where('user','=',$user->id)
  3. ->whereDoesntHave('post', function ($query) {
  4. $query->where('hide', '=', true);
  5. })
  6. ->get();
Add Comment
Please, Sign In to add comment