You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Support for limiting results on the CollectionEngine was added in #569 but the collection still returns all results when ->take(i) is used.
The application is not throwing an error when using the ->take() method, but it's not adding the limit and offset parameters to the SQL query either.
Steps To Reproduce:
Create a model with Searchable trait
SearchableModel::search($value)->take(5)->get();
The text was updated successfully, but these errors were encountered:
Description:
Support for limiting results on the CollectionEngine was added in #569 but the collection still returns all results when
->take(i)
is used.The application is not throwing an error when using the
->take()
method, but it's not adding the limit and offset parameters to the SQL query either.Steps To Reproduce:
SearchableModel::search($value)->take(5)->get();
The text was updated successfully, but these errors were encountered: