PHPackages                             superlatif/nova-tag-input - 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. superlatif/nova-tag-input

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

superlatif/nova-tag-input
=========================

Tag input field for Laravel Nova.

5.0(1y ago)13304.3k↓49.3%17[5 issues](https://github.com/superlatif-io/nova-tag-input/issues)[1 PRs](https://github.com/superlatif-io/nova-tag-input/pulls)4MITVuePHP &gt;=7.1.0

Since Nov 25Pushed 1y ago1 watchersCompare

[ Source](https://github.com/superlatif-io/nova-tag-input)[ Packagist](https://packagist.org/packages/superlatif/nova-tag-input)[ RSS](/packages/superlatif-nova-tag-input/feed)WikiDiscussions master Synced 3d ago

READMEChangelog (5)Dependencies (1)Versions (16)Used By (4)

Nova Tag Input Field
====================

[](#nova-tag-input-field)

This plugin incorporate the [Vue Tags Input](https://github.com/JohMun/vue-tags-input) plugin by Johannes Munari into Laravel Nova by creating a new field type.

[![Nova Tag Input](https://camo.githubusercontent.com/fefda9fd696a955d7e7da3376a520d7831bc644bd1551e8a2f67e81c2a31036f/68747470733a2f2f73757065726c617469662e696f2f7061636b616765732f6e6f76612d7461672d696e7075742f746167732d696e7075742d6e6f76612e6769663f31)](https://camo.githubusercontent.com/fefda9fd696a955d7e7da3376a520d7831bc644bd1551e8a2f67e81c2a31036f/68747470733a2f2f73757065726c617469662e696f2f7061636b616765732f6e6f76612d7461672d696e7075742f746167732d696e7075742d6e6f76612e6769663f31)

Nova 4
------

[](#nova-4)

This release must be used with Nova version 4 and above. Thanks to @dmason30 for the PR. To install a Nova 3 compatible version please see at the end.

Installing
----------

[](#installing)

Using Composer:

```
composer require superlatif/nova-tag-input

```

Example
-------

[](#example)

### Basic

[](#basic)

```
Tags::make(__("Tags"), 'tags')
    ->help("Press ENTER to add tag")
    ->placeholder("Add a new tag")
    ->allowEditTags(true)
    ->addOnKeys([13, ':', ';', ',']) // 13 = Enter key
    ->autocompleteItems([
        'Arizona',
        'California',
        'Colorado',
        'Michigan',
        'New York',
        'Texas',
    ]),

```

### Autocomplete items from Eloquent

[](#autocomplete-items-from-eloquent)

```
$tags = Tag::pluck('title')->get();
Tags::make(__("Tags"), 'tags')
    // ...
    ->autocompleteItems($tags)
    // ...

```

### Parameters

[](#parameters)

ParameterDescriptionTypeDefaultautocompleteItemsArray of strings used for autocompletionArray-addOnKeysSet of characters triggering tag insertionArray\[13\]separatorsDefines characters which split text into tags (useful when copy-pasting)Array\[';'\]placeholderHint displayed when the field is empty or after a list of existing tagsString-addFromPasteTags can be created from pasted textBooleantrueaddOnBlurTag is created when field loses focusBooleantrueaddOnlyFromAutocompleteOnly allow tag creation from the autocompleteItems arrayBooleanfalseallowEditTagsAllow inline tag editionBooleanfalseautocompleteAlwaysOpenAutocomplete list remains openBooleanfalseautocompleteFilterDuplicatesRemoves duplicates from autocomplete listBooleantrueautocompleteMinLengthThe minimum text that must be entered before autocompleteBoolean1avoidAddingDuplicatesPrevent duplicated tagsBooleantruedeleteOnBackspaceDelete tags using backspaceBooleantruedisabledDisable the fieldBooleanfalsemaxTagsMax number of tagsBoolean-Installing
----------

[](#installing-1)

To use a Nova 3 compatible version please use the following command:

```
composer require superlatif/nova-tag-input:3.0

```

Support us!
-----------

[](#support-us)

If you think we saved you some time on your development, please consider showing your appreciation 😁

[![Buy Me A Coffee](https://camo.githubusercontent.com/af7c4175cb725540f9b150c8450be14b719748cbe0445c56e51c70bb51fad263/68747470733a2f2f63646e2e6275796d6561636f666665652e636f6d2f627574746f6e732f76322f64656661756c742d7265642e706e67)](https://www.buymeacoffee.com/superlatif)

###  Health Score

43

—

FairBetter than 89% of packages

Maintenance30

Infrequent updates — may be unmaintained

Popularity45

Moderate usage in the ecosystem

Community22

Small or concentrated contributor base

Maturity61

Established project with proven stability

 Bus Factor2

2 contributors hold 50%+ of commits

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 ~155 days

Recently: every ~287 days

Total

13

Last Release

551d ago

Major Versions

1.4.4 → 4.02022-08-24

3.0 → 4.0.12022-10-11

4.0.1 → 5.02024-12-30

### Community

Maintainers

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

---

Top Contributors

[![SimonRTV](https://avatars.githubusercontent.com/u/47390161?v=4)](https://github.com/SimonRTV "SimonRTV (9 commits)")[![dmason30](https://avatars.githubusercontent.com/u/20278756?v=4)](https://github.com/dmason30 "dmason30 (7 commits)")[![devwebch](https://avatars.githubusercontent.com/u/18477386?v=4)](https://github.com/devwebch "devwebch (6 commits)")[![superlatif-io](https://avatars.githubusercontent.com/u/58174875?v=4)](https://github.com/superlatif-io "superlatif-io (5 commits)")

---

Tags

laravelnova

### Embed Badge

![Health badge](/badges/superlatif-nova-tag-input/health.svg)

```
[![Health](https://phpackages.com/badges/superlatif-nova-tag-input/health.svg)](https://phpackages.com/packages/superlatif-nova-tag-input)
```

###  Alternatives

[ebess/advanced-nova-media-library

Laravel Nova tools for managing the Spatie media library.

6163.5M22](/packages/ebess-advanced-nova-media-library)[optimistdigital/nova-sortable

This Laravel Nova package allows you to reorder models in a Nova resource's index view using drag &amp; drop.

2852.1M6](/packages/optimistdigital-nova-sortable)[outl1ne/nova-sortable

This Laravel Nova package allows you to reorder models in a Nova resource's index view using drag &amp; drop.

2862.1M9](/packages/outl1ne-nova-sortable)[markwalet/nova-modal-response

A Laravel Nova asset for Modal responses on an action.

17878.9k](/packages/markwalet-nova-modal-response)[advoor/nova-editor-js

A Laravel Nova field bringing EditorJs magic to Nova.

92219.3k3](/packages/advoor-nova-editor-js)[outl1ne/nova-page-manager

Page(s) and region(s) manager for Laravel Nova.

17947.0k](/packages/outl1ne-nova-page-manager)

PHPackages © 2026

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