genealabs / nova-prepopulate-searchable
A tool to allow BelongsTo searchable fields to be pre-populated with data
Installs: 63 658
Dependents: 0
Suggesters: 0
Security: 0
Stars: 38
Watchers: 3
Forks: 15
Open Issues: 3
Language:Vue
Requires
- php: ^7.4|^8.0
- illuminate/support: ^9.0
- laravel/nova: ^3.31
README
This package has been archived until such time that it can be brought up-to-date with Laravel Nova. We have stopped using Laravel Nova, and no longer have a license for it. As such we currently cannot justify further development on this package. Please check here for availability of similar packages: https://novapackages.com
Prepoulate Searchable for Laravel Nova
A tool to allow BelongsTo searchable fields to be pre-populated with data
- Alert: the namespace of this repo has changed from `alexbowers/nova-prepopulate-searchable` - to `genealabs/nova-prepopulate-searchable`. Please update your composer.json file before updating!
Sponsors
We thank the following sponsors for their generosity. Please take a moment to check them out:
Requirements
- PHP 7.3+
- Laravel 7.0+
- Nova 3.8.4+
Installation
You can install the package in to a Laravel app that uses Nova via composer:
composer require genealabs/nova-prepopulate-searchable
Usage
On any BelongsTo
fields in your resources that are searchable()
, you can also add prepopulate()
to the method chain and the field will be prepopulated with values to choose from.
You may optionally pass through a search query to the prepopulate method, and the keywords passed will be used for the search initially, before resetting the search to being empty (as it currently is).
Limiting Pre-Populated Items
You can limit the prepopulated items by passing in a search string to the prepopulated()
method like so:
BelongsTo::make("Archive") ->searchable() ->prepopulate("test").
This would prepopulate all archives that have test in their display field.
Security
If you discover any security related issues, please email hello@genealabs.com instead of using the issue tracker.
Credits
Alex Bowers
Alex is the original developer of this package and has done a great job with initial development.
Mike Bronner
I started using this package and didn't want it to fall to the way-side, as it helps improve the UX of Nova significantly. Alex graceously allowed me to continue development and maintenance on his original package.
License
The MIT License (MIT). Please see License File for more information.