PHPackages                             illizian/nova-suggest-wrapper - 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. illizian/nova-suggest-wrapper

Abandoned → [illizian/nova-suggest-field-container](/?search=illizian%2Fnova-suggest-field-container)Library[Utility &amp; Helpers](/categories/utility)

illizian/nova-suggest-wrapper
=============================

A Laravel Nova field container allowing Textarea's to contain typeahead suggestions

v0.1.1(5y ago)24MITVuePHP &gt;=7.1.0

Since Oct 21Pushed 5y agoCompare

[ Source](https://github.com/Illizian/nova-suggest-field-container)[ Packagist](https://packagist.org/packages/illizian/nova-suggest-wrapper)[ RSS](/packages/illizian-nova-suggest-wrapper/feed)WikiDiscussions main Synced today

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

Laravel Nova Suggest Field
==========================

[](#laravel-nova-suggest-field)

[![Latest Version on Packagist](https://camo.githubusercontent.com/3c9fdda08b9a6dfc5b7001d673d64d167c38fc592785752dee3ff532bc84790d/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f696c6c697a69616e2f6e6f76612d737567676573742d6669656c642d636f6e7461696e65722e737667)](https://packagist.org/packages/illizian/nova-suggest-field-container)[![License](https://camo.githubusercontent.com/ca6b7a8331366d4dbd32cd7450d75c8d85b9a364b71cdfc0b5f7ae98cf064840/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f496c6c697a69616e2f6e6f76612d737567676573742d6669656c642d636f6e7461696e65722e737667)](https://github.com/Illizian/nova-suggest-field-container/blob/master/LICENSE.md)

Description
-----------

[](#description)

A container for TextArea fields that enables typeahead auto suggestions

### Demo

[](#demo)

[![Demo](https://raw.githubusercontent.com/Illizian/nova-suggest-field-container/main/docs/nova-suggest-field-container-demo.gif)](https://raw.githubusercontent.com/Illizian/nova-suggest-field-container/main/docs/nova-suggest-field-container-demo.gif)

### Installation

[](#installation)

The package can be installed through Composer.

```
composer require illizian/nova-suggest-field-container
```

Usage
-----

[](#usage)

Wrap your TextArea with `\Illizian\NovaSuggestWrapper\NovaSuggestWrapper`, like so:

```
/* ... */
use \Illizian\NovaSuggestWrapper\NovaSuggestWrapper;
/* ... */

class Example extends Resource
{
    /* ... */
    public function fields(Request $request)
    {
        return [
            /* ... */
            NovaSuggestWrapper::make(
                [
                    Textarea::make(__('Textarea'), 'textarea')
                ]
            )->suggestions([ "foo", "foobar" ]),
        ];
    }
```

You can update the trigger character with the `trigger(string $char)` method, for example, here we allow people to mention User's by their username using the `@` character:

```
/* ... */
use \App\Models\User;
use \Illizian\NovaSuggestWrapper\NovaSuggestWrapper;
/* ... */

class Example extends Resource
{
    /* ... */
    public function fields(Request $request)
    {
        $users = User::all()->pluck('username')->toArray();

        return [
            /* ... */
            NovaSuggestWrapper::make(
                [
                    Textarea::make(__('Textarea'), 'textarea')
                ]
            )->trigger('@')->suggestions($users),
        ];
    }
```

License
-------

[](#license)

The MIT License (MIT). Please see [License File](https://github.com/Illizian/nova-suggest-field-container/blob/main/LICENSE.md) for more information.

###  Health Score

20

—

LowBetter than 14% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity40

Maturing project, gaining track record

 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.

###  Release Activity

Cadence

Every ~5 days

Total

2

Last Release

2021d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/ccdec7e785b95dd87a2bebe861d3f9b3a01e88624ba79af4a5217c072107b2d6?d=identicon)[Illizian](/maintainers/Illizian)

---

Top Contributors

[![Illizian](https://avatars.githubusercontent.com/u/703800?v=4)](https://github.com/Illizian "Illizian (8 commits)")

---

Tags

laravel-novalaravel-nova-fieldnovatypeahead-suggestionslaravelnova

### Embed Badge

![Health badge](/badges/illizian-nova-suggest-wrapper/health.svg)

```
[![Health](https://phpackages.com/badges/illizian-nova-suggest-wrapper/health.svg)](https://phpackages.com/packages/illizian-nova-suggest-wrapper)
```

###  Alternatives

[optimistdigital/nova-multiselect-field

A multiple select field for Laravel Nova.

3403.5M7](/packages/optimistdigital-nova-multiselect-field)[digital-creative/conditional-container

Provides an easy way to conditionally show and hide fields in your Nova resources.

116593.8k4](/packages/digital-creative-conditional-container)[genealabs/laravel-overridable-model

Provide a uniform method of allowing models to be overridden in Laravel.

92398.0k2](/packages/genealabs-laravel-overridable-model)[inspheric/nova-defaultable

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

51174.8k1](/packages/inspheric-nova-defaultable)[murdercode/nova4-tinymce-editor

Boost your Laravel Nova with the TinyMCE editor.

17165.2k](/packages/murdercode-nova4-tinymce-editor)[yieldstudio/nova-google-autocomplete

A Laravel Nova Google autocomplete field.

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

PHPackages © 2026

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