Skip to content

Instantly share code, notes, and snippets.

@sword-jin
Created September 11, 2016 08:38
Show Gist options
  • Save sword-jin/1f829c43f01c4590557dc193ff9d2ba9 to your computer and use it in GitHub Desktop.
Save sword-jin/1f829c43f01c4590557dc193ff9d2ba9 to your computer and use it in GitHub Desktop.
learn eloquent query.
$posts = Post::leftJoin('comments', 'comments.post_id', '=', 'posts.id')
->selectRaw(
'posts.*,
count(comments.id) as comments_count'
)
->groupBy('posts.id')
->orderBy('comments_count', 'desc')
->get();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment