From c4e72a3a3ab38881b44497eaa4ed77bc6714e169 Mon Sep 17 00:00:00 2001 From: Russ Long Date: Sat, 8 Feb 2020 15:15:08 -0500 Subject: [PATCH] fix tabulatioin --- app/Console/Commands/TabulateWinners.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Console/Commands/TabulateWinners.php b/app/Console/Commands/TabulateWinners.php index 23ed444..436ecb8 100644 --- a/app/Console/Commands/TabulateWinners.php +++ b/app/Console/Commands/TabulateWinners.php @@ -66,7 +66,7 @@ class TabulateWinners extends Command ->whereNotIn('vehicle_scores.vehicle', function ($query) { $query->select('vehicle')->from('car_show_winners'); }) - ->where('vehicles.doNotJudge', '=', '0') + ->where('vehicles.doNotJudge', '=', "0") ->where('vehicles.type', '=', "$category") ->orderBy('totalscore', 'desc') ->first();