From 8604d3b9f5b60eb90dd0d93deb95435c25fcdf82 Mon Sep 17 00:00:00 2001 From: Russ Long Date: Sat, 8 Feb 2020 15:25:40 -0500 Subject: [PATCH] testing --- app/Console/Commands/TabulateWinners.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Console/Commands/TabulateWinners.php b/app/Console/Commands/TabulateWinners.php index 469ccd1..af0e1a8 100644 --- a/app/Console/Commands/TabulateWinners.php +++ b/app/Console/Commands/TabulateWinners.php @@ -183,8 +183,8 @@ class TabulateWinners extends Command ->whereNotIn('vehicle_scores.vehicle', function ($query) { $query->select('vehicle')->from('car_show_winners'); }) - //->where('vehicles.doNotJudge', '=', 0) - //->where('vehicles.type', '=', "$category") + ->where('vehicles.doNotJudge', '=', 0) + ->where('vehicles.type', '=', "$category") ->orderBy('totalscore', 'desc') ->first(); return $categoryWinnerQuery->vehicle;