mmanos / laravel-search

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

Search query highlighting #11

Closed dmyers closed 5 years ago

dmyers commented 9 years ago

It would be nice to be able to show highlighted matches in an interface for users.

dsposito commented 9 years ago

Agreed. Would love to see this.

hdouanla commented 9 years ago

Since the result is pushed back from elastic search server, this is a workaround if you really want to highlight the text in the results. A simple php function:

screen shot 2014-12-27 at 2 02 09 am

This is no case sensitive and will highlight any maching Uppercase/Lowercase/mixed $searchtext in the provided $text.

See an exemple here http://www.icilekongossa.com/search?type=all&q=Cameroun

Assuming that you use a separate css to style the searchtext class like this:

span.searchtext { background-color: #ffff00; }