PHPackages                             suciuss/type-ahead-emiter-field - 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. suciuss/type-ahead-emiter-field

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

suciuss/type-ahead-emiter-field
===============================

A Laravel Nova text autocomplete field.

010Vue

Since Oct 13Pushed 5y ago1 watchersCompare

[ Source](https://github.com/suciuss/type-ahead-emiter-field)[ Packagist](https://packagist.org/packages/suciuss/type-ahead-emiter-field)[ RSS](/packages/suciuss-type-ahead-emiter-field/feed)WikiDiscussions master Synced yesterday

READMEChangelogDependenciesVersions (1)Used By (0)

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

17

—

LowBetter than 6% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity5

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity32

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% 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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/2d88f6b1650297d8007d4a6d28b02bc796a385552ca59d48867c7543eb410b44?d=identicon)[suciusebi](/maintainers/suciusebi)

---

Top Contributors

[![suciuss](https://avatars.githubusercontent.com/u/24525463?v=4)](https://github.com/suciuss "suciuss (6 commits)")

### Embed Badge

![Health badge](/badges/suciuss-type-ahead-emiter-field/health.svg)

```
[![Health](https://phpackages.com/badges/suciuss-type-ahead-emiter-field/health.svg)](https://phpackages.com/packages/suciuss-type-ahead-emiter-field)
```

PHPackages © 2026

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