TitasGailius / nova-search-relations

This package allow you to include relationship columns into Laravel Nova search query.
Other
352 stars 33 forks source link

Search concat of fields #20

Closed blasto333 closed 4 years ago

blasto333 commented 4 years ago

Would be nice if we could do this

public static $searchRelations = [
    'athletes' => ['first_name','last_name','CONCAT(first_name," ",last_name)']
],
TitasGailius commented 4 years ago

I finally got some time to check this. I want the relationship search to behave exactly the same how Nova is behaving with regular search. This PR breaks this consistency.

If you want to adjust the behaviour to your needs, overriding this method is not of a big deal.