lizhineng / nova-relation-search
Handle relation search feature on Nova resource.
Installs: 494
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/lizhineng/nova-relation-search
Requires
- laravel/nova: ~3.0
Requires (Dev)
- orchestra/testbench: ^5.1
- phpunit/phpunit: ^9
This package is auto-updated.
Last update: 2025-09-28 19:35:44 UTC
README
Currently, Nova resource doesn't support relation search out of the box, and the package is to give that ability to you.
Installation
You can install the package to your Laravel app by using the following command via Composer.
composer require lizhineng/nova-relation-search
Usage
// in the App/Nova/Post.php ... import LiZhineng\NovaRelationSearch\HandleRelationSearch; use HandleRelationSearch; public static $relatedSearch = [ 'user' => ['name'], ]; ...
After the extremely easy setup, now you can go to search your resource and test it, have fun :-)