Created
September 5, 2018 12:26
-
-
Save mattiamanzati/42acd21c9f52058f166e181b0acaab93 to your computer and use it in GitHub Desktop.
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
// 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