Advertisement
Guest User

Untitled

a guest
Feb 19th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. // Retrieve all posts that have at least one comment...
  2. $posts = AppPost::has('comments')->get();
  3.  
  4. $posts = AppPost::has('comments', '<', 1)->get();
  5.  
  6. $posts = AppPost::doesntHave('comments')->get();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement