PHPackages                             gkermer/nova-text-auto-complete - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. gkermer/nova-text-auto-complete

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

gkermer/nova-text-auto-complete
===============================

A Laravel Nova text autocomplete field.

0.0.5(5y ago)22115.5k↑25%10[6 issues](https://github.com/gkermer/nova-text-auto-complete/issues)[1 PRs](https://github.com/gkermer/nova-text-auto-complete/pulls)1MITVuePHP &gt;=7.1.0

Since Jan 14Pushed 3y ago2 watchersCompare

[ Source](https://github.com/gkermer/nova-text-auto-complete)[ Packagist](https://packagist.org/packages/gkermer/nova-text-auto-complete)[ RSS](/packages/gkermer-nova-text-auto-complete/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (3)DependenciesVersions (6)Used By (1)

Laravel Nova Text Auto-Complete
===============================

[](#laravel-nova-text-auto-complete)

This [Nova](https://nova.laravel.com/) field provides a capability of auto-completed searching for results inside a text input field.

[![Nova text with autocomplete demo](./docs/demo.gif)](./docs/demo.gif)

Installation
------------

[](#installation)

You can install the Nova field in to a Laravel app that uses [Nova](https://nova.laravel.com) via composer:

```
composer require gkermer/nova-text-auto-complete
```

Usage
-----

[](#usage)

To add an autocomplete text field, use the `Gkermer\TextAutoComplete\TextAutoComplete` field in your Nova resource:

```
use Gkermer\TextAutoComplete\TextAutoComplete;
```

```
TextAutoComplete::make('Favourite Fruit')->items([
    'Apple',
    'Apricots',
    'Avocado',
    'Banana',
    'Blueberries',
]),
```

Assuming you have an Eloquent model `Fruit` with attribute `name`, you could get the items by:

```
TextAutoComplete::make('Favourite Fruit')->items(
    Fruit::pluck('name')
),
```

However, imagine the `Fruit` has hundreds or thousands records and the drop-down selection menu is populated with so many items. Then you could find the items like so:

```
TextAutoComplete::make('Favourite Fruit')->items(function($search) {
    return Fruit::where('name', 'like', '%' . $search . '%')
        ->get()
        ->pluck('name');
}),
```

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE) for more information.

###  Health Score

33

—

LowBetter than 75% of packages

Maintenance15

Infrequent updates — may be unmaintained

Popularity41

Moderate usage in the ecosystem

Community16

Small or concentrated contributor base

Maturity49

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 92.3% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~147 days

Total

5

Last Release

2089d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/1c24dc35b10e975dbfb6f67d8757fa560a7b616918fabefbedf2d2d1c0bdfe67?d=identicon)[gkermer](/maintainers/gkermer)

---

Top Contributors

[![gkermer](https://avatars.githubusercontent.com/u/8224376?v=4)](https://github.com/gkermer "gkermer (12 commits)")[![hrow](https://avatars.githubusercontent.com/u/1923965?v=4)](https://github.com/hrow "hrow (1 commits)")

---

Tags

laravelautocompletetextnovaauto complete

### Embed Badge

![Health badge](/badges/gkermer-nova-text-auto-complete/health.svg)

```
[![Health](https://phpackages.com/badges/gkermer-nova-text-auto-complete/health.svg)](https://phpackages.com/packages/gkermer-nova-text-auto-complete)
```

###  Alternatives

[optimistdigital/nova-multiselect-field

A multiple select field for Laravel Nova.

3403.5M7](/packages/optimistdigital-nova-multiselect-field)[ericlagarda/nova-text-card

A custom card for Laravel Nova to show Text in cards with some good options

20388.6k2](/packages/ericlagarda-nova-text-card)[outl1ne/nova-inline-text-field

A Laravel Nova inline text field.

23252.9k2](/packages/outl1ne-nova-inline-text-field)[yieldstudio/nova-google-autocomplete

A Laravel Nova Google autocomplete field.

12218.4k](/packages/yieldstudio-nova-google-autocomplete)[inspheric/nova-defaultable

Default values for Nova fields when creating resources and running resource actions.

51174.8k1](/packages/inspheric-nova-defaultable)[datomatic/nova-detached-actions

A Laravel Nova tool to allow for placing actions in the Nova toolbar detached from the checkbox selection mechanism.

11229.2k](/packages/datomatic-nova-detached-actions)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
