Created
September 11, 2016 08:38
-
-
Save sword-jin/1f829c43f01c4590557dc193ff9d2ba9 to your computer and use it in GitHub Desktop.
learn eloquent query.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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