Search code examples
phplaraveleloquentlaravel-query-builder

Cancel group by from query in Laravel


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);

Solution

  • You can do it with:

    $myQuery->groups = null;