pimlie / laravel-datatables-mongodb

Laravel DataTables plugin to support Laravel Mongodb
MIT License
12 stars 15 forks source link

mongodb full text search #2

Closed adnanmokhtar closed 6 years ago

adnanmokhtar commented 6 years ago

How to use full text search with this plugin ?

pimlie commented 6 years ago

What do you mean exactly, can you describe it a bit more? Eg do you mean just searching on any columns or specifically use a mongodb text index?

adnanmokhtar commented 6 years ago

Yes i mean mongodb text index.

pimlie commented 6 years ago

You will have to use the filter column api in which you add a custom keyword search. See: https://yajrabox.com/docs/laravel-datatables/master/filter-column

and use something like (please check the laravel-mongodb repo for more examples)

$query->whereRaw(array('$text' => array('$search' => $keyword)));