implode(): Passing glue string after array is deprecated
I am trying to make a post and i got this error ErrorException (E_DEPRECATED) implode(): Passing glue string after array is deprecated. Swap the parameters
@monstajamss I think this "ErrorException (E_DEPRECATED) implode(): Passing glue string after array is deprecated. Swap the parameters" is pretty clear.
Note: implode() can, for historical reasons, accept its parameters in either order. For consistency with explode(), however, it is deprecated not to use the documented order of arguments.
Thanks everyone for answering, i really appreciate it. I was able to solve the problem by upgrading my Laravel project from Version 5 to Version 7. After doing that the website worked and i did not get that problem anymore.
This error also exists if you are using php 7.4 while your project should be running on php 7.3 which of course is equivalent to update of laravel to version 7 ;-)