//Get popular posts on laravel based on comments and likes $posts = Post::withCount('comments','likes')->orderBy(DB::raw('comments_count + likes_count'),'DESC')->get();