PHPackages                             kraenkvisuell/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. kraenkvisuell/belongs-to-many-field

ActiveLibrary[Admin Panels](/categories/admin)

kraenkvisuell/belongs-to-many-field
===================================

belongsToMany nova representation in field.

v2.0(4y ago)03.5k2MITPHPPHP &gt;=7.1.0

Since Mar 13Pushed 4y agoCompare

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

READMEChangelog (1)DependenciesVersions (28)Used By (2)

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

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

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!

[![image](https://user-images.githubusercontent.com/11976865/54318738-46290000-45b5-11e9-8ea0-941adb4b79ba.png)](https://user-images.githubusercontent.com/11976865/54318738-46290000-45b5-11e9-8ea0-941adb4b79ba.png)

### Installation

[](#installation)

```
composer require kraenkvisuell/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 Kraenkvisuell\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`showAsListInDetail`BooleantrueThis method allows you to display as list in detail- 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 Kraenkvisuell\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'),
```

- Method showAsListInDetail(), This method allows you to change the default view to list in detail

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

### 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 Kraenkvisuell\BelongsToManyField\BelongsToManyField;

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

[![image](https://raw.githubusercontent.com/Kraenkvisuell/belongs-to-many-field-nova/master/validation.png)](https://raw.githubusercontent.com/Kraenkvisuell/belongs-to-many-field-nova/master/validation.png)

### Translations

[](#translations)

To publish translations:

```
php artisan vendor:publish --provider="Kraenkvisuell\BelongsToManyField\FieldServiceProvider"

```

This package come with the following translation for the vue-multiselect plugin.

- en, ru.

To translate validations use Laravel validation translations.

Credits to:

###  Health Score

32

—

LowBetter than 72% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity16

Limited adoption so far

Community20

Small or concentrated contributor base

Maturity65

Established project with proven stability

 Bus Factor1

Top contributor holds 58.8% 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 ~30 days

Recently: every ~98 days

Total

27

Last Release

1821d ago

Major Versions

0.8 → 1.02019-10-18

1.9 → v2.02021-05-17

### Community

Maintainers

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

---

Top Contributors

[![Benjacho](https://avatars.githubusercontent.com/u/11976865?v=4)](https://github.com/Benjacho "Benjacho (60 commits)")[![smskin](https://avatars.githubusercontent.com/u/3227797?v=4)](https://github.com/smskin "smskin (6 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (5 commits)")[![angelsk](https://avatars.githubusercontent.com/u/606510?v=4)](https://github.com/angelsk "angelsk (5 commits)")[![bastihilger](https://avatars.githubusercontent.com/u/1419634?v=4)](https://github.com/bastihilger "bastihilger (5 commits)")[![vhcraig](https://avatars.githubusercontent.com/u/52801576?v=4)](https://github.com/vhcraig "vhcraig (4 commits)")[![danieleugoletti](https://avatars.githubusercontent.com/u/115441?v=4)](https://github.com/danieleugoletti "danieleugoletti (4 commits)")[![bnoordsij](https://avatars.githubusercontent.com/u/8420034?v=4)](https://github.com/bnoordsij "bnoordsij (2 commits)")[![infostreams](https://avatars.githubusercontent.com/u/1132744?v=4)](https://github.com/infostreams "infostreams (2 commits)")[![MaxKorlaar](https://avatars.githubusercontent.com/u/8917249?v=4)](https://github.com/MaxKorlaar "MaxKorlaar (2 commits)")[![semihkeskindev](https://avatars.githubusercontent.com/u/32278879?v=4)](https://github.com/semihkeskindev "semihkeskindev (2 commits)")[![ericphamhoangdev](https://avatars.githubusercontent.com/u/268210294?v=4)](https://github.com/ericphamhoangdev "ericphamhoangdev (2 commits)")[![dormadekhin](https://avatars.githubusercontent.com/u/32381310?v=4)](https://github.com/dormadekhin "dormadekhin (1 commits)")[![Athlon1600](https://avatars.githubusercontent.com/u/1063088?v=4)](https://github.com/Athlon1600 "Athlon1600 (1 commits)")[![abr4xas](https://avatars.githubusercontent.com/u/405484?v=4)](https://github.com/abr4xas "abr4xas (1 commits)")

---

Tags

laravelnovabelongsToManyMany to Many Field

### Embed Badge

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

```
[![Health](https://phpackages.com/badges/kraenkvisuell-belongs-to-many-field/health.svg)](https://phpackages.com/packages/kraenkvisuell-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)
