mmanos / laravel-search

A search package for Laravel 5.
MIT License
352 stars 59 forks source link

whereOr #42

Open iveoles opened 8 years ago

iveoles commented 8 years ago

Is is possible to have an orWhere query?

$query->search('title', 'Born In the USA');
$query->where('genre_id', 3);
$query->orWhere('genre_id', 74);
dmyers commented 8 years ago

This would definitely be a great addition and mirror some functionality of Eloquent. I'm sure most of the drivers should be able to support it too and I think I have some code stashed for ElasticSearch to do this.

nalmada commented 7 years ago

any news on this ? this is one of the most important feature