TitasGailius / nova-search-relations

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

Double Relation Search #19

Closed GenedyMohamed closed 5 years ago

GenedyMohamed commented 5 years ago

I have a relation between UserRace -> Race -> Event, The relation shows "EventName - RaceName" in Race column in UserRaces, The package only search with RaceName only and I cannot make another nested relation search within the relation search

TitasGailius commented 5 years ago

have you tried doing:

/**
 * The relationship columns that should be searched.
 *
 * @var array
 */
public static $searchRelations = [
    'race.event' => ['name'],
];

also, can you post a code snippet or something?