Skip to content

Instantly share code, notes, and snippets.

@mattiamanzati
Created September 5, 2018 12:26
Show Gist options
  • Save mattiamanzati/42acd21c9f52058f166e181b0acaab93 to your computer and use it in GitHub Desktop.
Save mattiamanzati/42acd21c9f52058f166e181b0acaab93 to your computer and use it in GitHub Desktop.
// do precedenza alle cose ambigue
$tweet = Tweet::query()
->orderBy('votes_total', 'ASC')
->inRandomOrder()
->where('votes_total', '<', 10)
->where('votes_total', '>', 0)
->where('votes_category', '!=', DB::raw('predicted_category'))
->first();
if(!empty($tweet)) return $tweet;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment