TL;DR
If you are using Elasticsearch then remove the method bulk() from your code and use a normal HTTP request (you can guzzle for this) to invoke the _bulk API of ES to update your documents instead of using Elasticsearch official Laravel library.
...