selahattinunlu / laravel-api-query-builder

Laravel & Lumen Api Query Builder Package
331 stars 66 forks source link

Not working if the searching key word includes "&" character #51

Open danhnguyeen opened 4 years ago

danhnguyeen commented 4 years ago

Hi there, Your library is a very good idea to implement the advanced searching. But it will not work if the key word includes & characters (something like this name="abc & 123"), because you are splitting the url params by this function array_filter(explode('&', $queryUri)). So it will be error in this case. Could you think how to fix it? I'm thinking the solution too