I am using Laravel 5.5 i added this dependency for making simple search engine
https://github.com/nicolaslopezj/searchable
but getting problem when i try to search anything
SQLSTATE[42000]: Syntax error or access violation: 1055 'myreview.movies.name' isn't in GROUP BY (SQL: select count() as aggregate from (select movies., max((case when LOWER(movies.name) LIKE car then 150 else 0 end) + (case when LOWER(movies.name) LIKE car% then 50 else 0 end) + (case when LOWER(movies.name) LIKE %car% then 10 else 0 end) + (case when LOWER(movies.description) LIKE car then 150 else 0 end) + (case when LOWER(movies.description) LIKE car% then 50 else 0 end)
i have already tried with change mysql database i am using mariadb 10.2 after change to mysql 5.7 its working fine
but i have mariadb on my cpanel server
help me regard this thank you