Laravel Eloquent GroupBy throwing SQL error

Solution:

You should go to config\database.php and change strict to false

'mysql' => [
   ...
   'strict' => false,
   ...
 ]