khalin / nova4-searchable-belongs-to-filter
Searchable Nova 4 filter for belongsTo relationships.
Installs: 54 058
Dependents: 0
Suggesters: 0
Security: 0
Stars: 5
Watchers: 0
Forks: 9
Open Issues: 2
Language:Vue
Requires
- php: >=7.1.0
- laravel/nova: ^4.0
This package is auto-updated.
Last update: 2024-11-18 15:29:14 UTC
README
Searchable Nova filter for belongsTo relationships.
Demo
Prerequisites
This package assumes you have a text-search setup for your Eloquent models. See Laravel Scout.
Installation
composer require khalin/nova4-searchable-belongs-to-filter
Usage
For this example let's assume a user belongs to a department and a department has many users.
To make the relationship searchable via a filter, add this to the filters()
function of your Nova user resource:
By default the filter will display the name of the fieldAttribute
you passed on instantiation. You can customize the name by passing it as an argument to the filter's construct function, for example my-new-name
.
// app/Nova/User.php use Khalin\Nova4SearchableBelongsToFilter\NovaSearchableBelongsToFilter public function filters(Request $request) { return [ (new NovaSearchableBelongsToFilter('my-new-name')) ->fieldAttribute('department') ->filterBy('department_id') ]; }