PHPackages                             scouser03/multi-select - 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. scouser03/multi-select

ActiveLibrary

scouser03/multi-select
======================

A Multiselect field for Laravel Nova

1.4.0(4y ago)115MITVuePHP &gt;=7.1.0

Since Apr 11Pushed 4y ago1 watchersCompare

[ Source](https://github.com/scouser03/nova-multi-select)[ Packagist](https://packagist.org/packages/scouser03/multi-select)[ RSS](/packages/scouser03-multi-select/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (2)DependenciesVersions (9)Used By (0)

A Multiselect field for Laravel Nova
====================================

[](#a-multiselect-field-for-laravel-nova)

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

[](#installation)

First you must install this package in to a Laravel app that uses [Nova](https://nova.laravel.com) via composer:

```
composer require scouser03/multi-select
```

Usage
-----

[](#usage)

```
namespace App\Nova;

use Spatie\TagsField\Tags;
use Scouser03\MultiSelect\MultiSelect;

class BlogPost extends Resource
{
    // ...

    public function fields(Request $request)
    {
        return [
            // ...

            MultiSelect::make('select name with model', 'tags') //tags is relation name
                ->table('post_tag') //Relation table
                ->inputId('uuid') //Sets the id of the input element. default - id
                ->label('tag') // What key to use when generating option labels when each option is an object, default - name
                ->indexUpdateable(true) //when attach new tag to index resource
                ->model(Tag::class), //get all data with model

            MultiSelect::make('select name with query', 'tags')
                ->table('post_tag')
                ->label('tag')
                ->query(Tag::query()->take(3)->get()), //pass collection data

            // ...
        ];
    }
}
```

License
-------

[](#license)

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

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity49

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

Total

8

Last Release

1480d ago

Major Versions

0.0.1 → 1.0.02022-04-11

### Community

Maintainers

![](https://www.gravatar.com/avatar/9753ef055b659acda531aef0fd84bf41973ad96b18d12bbf39d57458a53d6bd0?d=identicon)[scouser03](/maintainers/scouser03)

---

Top Contributors

[![scouser03](https://avatars.githubusercontent.com/u/35454401?v=4)](https://github.com/scouser03 "scouser03 (15 commits)")

---

Tags

laravelnova

### Embed Badge

![Health badge](/badges/scouser03-multi-select/health.svg)

```
[![Health](https://phpackages.com/badges/scouser03-multi-select/health.svg)](https://phpackages.com/packages/scouser03-multi-select)
```

###  Alternatives

[optimistdigital/nova-multiselect-field

A multiple select field for Laravel Nova.

3403.5M7](/packages/optimistdigital-nova-multiselect-field)[coreproc/nova-notification-feed

A Laravel Nova package that adds a notification feed in your Nova app.

10149.1k](/packages/coreproc-nova-notification-feed)[inspheric/nova-defaultable

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

51174.8k1](/packages/inspheric-nova-defaultable)[cybercog/laravel-nova-ban

A Laravel Nova banning functionality for your application.

40199.8k](/packages/cybercog-laravel-nova-ban)[insenseanalytics/nova-server-monitor

A Laravel Nova tool for Spatie's Server Monitor library.

6546.9k](/packages/insenseanalytics-nova-server-monitor)[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)
