I'm trying to use group by and count together in a query but the count always returns null. Please help me with this `DB::table('contracts')->groupBy('code', 'status') ->select(DB::raw('COUNT(*) as `count`')) ->having('count', '>', 1) ->get()`