Customer::class, 'ShippingAddress' => Address::class, ]; private static $searchable_fields = [ 'CustomFirstName' => [ 'title' => 'First Name', 'field' => TextField::class, 'filter' => 'PartialMatchFilter', 'match_any' => [ // Searching with "First Name" will show Orders with matching Customer or Address names 'Customer.FirstName', 'ShippingAddress.FirstName', ] ] ]; }