laravel-scout-elasticsearch
laravel-scout-elasticsearch copied to clipboard
Search among multiple models with ElasticSearch and Laravel Scout
**Describe the bug** When running `php artisan scout:import` I'm seeing my mail templates get dumped in the console. **To Reproduce** I have this mail view: app\Domain\Reports\Mail\views\report-generated.blade.php ``` @component('mail::message') # Your...
**Describe the bug** After publishing of config file and running import command, there is an error that is probably caused by deprecated usage of type attribute. As it can be...
I am sure I am just missing something here but just cannot get any data to import into elasticsearch. I am using 7.0.1 with the latest version of your package...
I see the package is using the ONGR `QueryStringQuery` by default and a lot is already possible with the [elasticsearch query syntax](https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-query-string-query.html#query-string-syntax). In my case, I simply want to set...
We need a method to be able to swap out the hits generator on a search by search basis. For example if adding the highlight feature, we need to be...
Improve https://github.com/matchish/laravel-scout-elasticsearch#working-with-results Add an example
Add test for https://github.com/matchish/laravel-scout-elasticsearch/blob/master/src/Database/Scopes/ChunkScope.php
**Describe the bug** i am using php version 7.4 and i should use v4 package, and i got this error, is there any way that i could fix it?
When using a custom search method: `function (Client $client, Search $search)` you'll get a TypeError: ```php Matchish\\ScoutElasticSearch\\ElasticSearch\\EloquentHitsIteratorAggregate::__construct(): Argument #1 ($results) must be of type array, Elastic\\Elasticsearch\\Response\\Elasticsearch given ```
Offset search is very slow in the import, need use chunkById More info for comparsion https://www.laravel-enlightn.com/blog/laravel-offset-vs-cursor-pagination/