Skip to content

Instantly share code, notes, and snippets.

@msurguy
Created November 4, 2013 22:18
Show Gist options
  • Save msurguy/7310163 to your computer and use it in GitHub Desktop.
Save msurguy/7310163 to your computer and use it in GitHub Desktop.
Sort by popularity in Laravel
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