How can I cancel the "group by" clause in my query in Laravel?
For example I have:
$myQuery = Table::select('column')->groupBy('column');
And then later in my code I want to remove the group by
clause from
$myQuery = $myQuery->groupBy(null);
You can do it with:
$myQuery->groups = null;