TitasGailius / nova-search-relations

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

Questions #3

Closed ghost closed 6 years ago

ghost commented 6 years ago

hi! Is it possible to sort EVENTS by cities, which in turn are related to restaurants? default something like that public static $searchRelations = [ 'restaurants' => 'city' => ['title'], ];

TitasGailius commented 6 years ago

You may set up a has many through relationship. https://laravel.com/docs/5.7/eloquent-relationships#has-many-through Then simply

public static $searchRelations = [
    'cities' => ['title'],
];