Closed Dani2kn closed 2 years ago
Hey Erick, can you implement the fix from #160
Also:
TypeError Unsupported operand types: array / int
Tamayo\LaravelScoutElastic\Engines\ElasticsearchEngine::paginate vendor/tamayo/laravel-scout-elastic/src/Engines/ElasticsearchEngine.php:114
$result['nbPages'] = $result['hits']['total'] / $perPage;
Replace with:
$result['nbPages'] = $this->getTotalCount($result) / $perPage;
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Hey Erick, can you implement the fix from #160
Also:
TypeError Unsupported operand types: array / int
Tamayo\LaravelScoutElastic\Engines\ElasticsearchEngine::paginate vendor/tamayo/laravel-scout-elastic/src/Engines/ElasticsearchEngine.php:114
$result['nbPages'] = $result['hits']['total'] / $perPage;
Replace with:
$result['nbPages'] = $this->getTotalCount($result) / $perPage;