Created
November 4, 2013 22:18
-
-
Save msurguy/7310163 to your computer and use it in GitHub Desktop.
Sort by popularity in Laravel
This file contains 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
public function scopePopular($query) | |
{ | |
return $query->orderBy(DB::raw('views_cache + 5*clicks_cache'),'desc'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment