PHPackages                             keops007/belongs-to-many-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. [Admin Panels](/categories/admin)
4. /
5. keops007/belongs-to-many-field

ActiveLibrary[Admin Panels](/categories/admin)

keops007/belongs-to-many-field
==============================

belongsToMany nova representation in field.

v1.2(6y ago)052[16 PRs](https://github.com/keops007/nova-belongs-to-many-field/pulls)MITPHPPHP &gt;=7.1.0

Since Apr 27Pushed 3y ago1 watchersCompare

[ Source](https://github.com/keops007/nova-belongs-to-many-field)[ Packagist](https://packagist.org/packages/keops007/belongs-to-many-field)[ RSS](/packages/keops007-belongs-to-many-field/feed)WikiDiscussions master Synced 3d ago

READMEChangelogDependenciesVersions (20)Used By (0)

Belongs To Many Field Nova With Dependant
=========================================

[](#belongs-to-many-field-nova-with-dependant)

Inspired from: The initial package did not work with older versions of Nova because of "sortableUriKey" Belongs To Many field to represent many to many relationship in field. This Field allow attaching relationships easily. Also you can:

- Pass query to the multiple select
- Depends on BelongsTo field
- It is available in index, detail and forms!

### Installation

[](#installation)

```
composer require keops007/belongs-to-many-field
```

### Usage

[](#usage)

In the resource you need to pass:

- Method make ('label', 'many to many relationship function name', 'Nova Resource Relationship')

```
use Keops007\BelongsToManyField\BelongsToManyField;

public function fields(Request $request){
    return [
        ..., //If you are using with BelongsToMany native Field, put this field after

        BelongsToManyField::make('Role Label', 'roles', 'App\Nova\Role'),
    ];
}
```

### Functions

[](#functions)

FunctionParamdefaultdescription`optionsLabel`String'name'If you don't have column 'name' in your relationship table, use this method. This displays in index and detail Ejm (`optionsLabel('full_role_name')`).`isAction`BooleantrueThis method is when you need this field in actions, this puts height of field in 350px, and converts in action.`setMultiselectProps`Array\[\]this method allows you to set properties for the [vue multiselect component](https://vue-multiselect.js.org/#sub-props)`dependsOn`String, Stringnull, nullThis method allows you to depend on belongsto field, this make an auto query`canSelectAll`String, Boolean'Select All', trueThis method allows you to have a select all checkbox and display custom message- Method optionsLabel('columnName'), this method is when you don't have column 'name' in your table and you want to label by another column name. By default it tracks by label 'name'.

IMPORTANT

- If you want to label by another column name when displaying in forms, you need to set the title() method on your relationship resource, this method returns an string that is used to label it, also don't forget to add optionsLabel() method to show in detail and index.

```
use Keops007\BelongsToManyField\BelongsToManyField;

public function fields(Request $request){
    BelongsToManyField::make('Role Label', 'roles', 'App\Nova\Role')->optionsLabel('full_role_name'),
}
```

- To obtain the data that was sent in action:

```
public function handle(ActionFields $fields, Collection $models)
{
    //note that roles is the many to many relationship function name
    $values = array_column(json_decode(request()->roles, true),'id');

    foreach ($models as $model) {
        $model->roles()->sync($values);
    }
}
```

- Method setMultiselectProps($props), this method allows you to set properties for the [vue multiselect component](https://vue-multiselect.js.org/#sub-props)

```
     BelongsToManyField::make('Role Label', 'roles', 'App\Nova\Role')
     ->options(\App\Role::all())
     ->setMultiselectProps([
        'selectLabel' => 'click for select',
        // and others from docs
     ]);
```

- Method dependsOn($dependsOnvalue, $dependsOnKey), This method allows you to depend on belongsto field, this make an auto query

```
     BelongsTo::make('Association', 'association', 'App\Nova\Association'),

     BelongsToManyField::make('Participants', 'participant', 'App\Nova\Participant')
     ->dependsOn('association', 'association_id'),
```

- Method canSelectAll($messageSelectAll), This method allows you to display select all checkbox, if you dont pass message default is displayed

```
     BelongsToManyField::make('Participants', 'participant', 'App\Nova\Participant')
     ->canSelectAll('Seleccionar Todo'),
```

### Validations

[](#validations)

This package implement all Laravel Validations, you need to pass the rules in rules method, rules are listed on laravel validations rules for arrays\*.

```
use Keops007\BelongsToManyField\BelongsToManyField;

public function fields(Request $request){
    return [
        ...,
        BelongsToManyField::make('Role Label', 'roles', 'App\Nova\Role')->relationModel(\App\User::class)->rules('required', 'min:1', 'max:5', 'size:3', new CustomRule),
    ];
}
```

For translations of this validations, use normal laravel validations translations.

Credits to:

Credits to:

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community4

Small or concentrated contributor base

Maturity60

Established project with proven stability

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

Total

3

Last Release

2201d ago

### Community

Maintainers

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

---

Tags

laravelnovabelongsToManyMany to Many Field

### Embed Badge

![Health badge](/badges/keops007-belongs-to-many-field/health.svg)

```
[![Health](https://phpackages.com/badges/keops007-belongs-to-many-field/health.svg)](https://phpackages.com/packages/keops007-belongs-to-many-field)
```

###  Alternatives

[benjacho/belongs-to-many-field

belongsToMany nova representation in field.

158811.4k1](/packages/benjacho-belongs-to-many-field)[pdmfc/nova-action-button

A Laravel Nova field to run actions.

37733.0k1](/packages/pdmfc-nova-action-button)[khalin/nova-link-field

A Laravel Nova Link field.

31562.2k2](/packages/khalin-nova-link-field)

PHPackages © 2026

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