PHPackages                             njxqlus/filament-relation-manager-component - 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. njxqlus/filament-relation-manager-component

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

njxqlus/filament-relation-manager-component
===========================================

Use Filament Relation Manager Everywhere!

2.2.2(3mo ago)47110.9k↓31.1%11[1 issues](https://github.com/njxqlus/filament-relation-manager-component/issues)1MITPHPPHP ^8.3CI passing

Since Sep 4Pushed 1w ago3 watchersCompare

[ Source](https://github.com/njxqlus/filament-relation-manager-component)[ Packagist](https://packagist.org/packages/njxqlus/filament-relation-manager-component)[ Docs](https://github.com/njxqlus/filament-relation-manager-component)[ GitHub Sponsors](https://github.com/njxqlus)[ RSS](/packages/njxqlus-filament-relation-manager-component/feed)WikiDiscussions main Synced 3d ago

READMEChangelog (10)Dependencies (27)Versions (16)Used By (1)

Use Filament Relation Manager Everywhere!
=========================================

[](#use-filament-relation-manager-everywhere)

[![Latest Version on Packagist](https://camo.githubusercontent.com/4004beeb1474e125d3445441bbdc530668e8df0e2aae287177661ccf11af12c7/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6e6a78716c75732f66696c616d656e742d72656c6174696f6e2d6d616e616765722d636f6d706f6e656e742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/njxqlus/filament-relation-manager-component)[![GitHub Tests Action Status](https://camo.githubusercontent.com/14cc587a3861c957d95b2a94c79a551c9e03975963d0f205e15707dbc28da45a/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f6e6a78716c75732f66696c616d656e742d72656c6174696f6e2d6d616e616765722d636f6d706f6e656e742f72756e2d74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/njxqlus/filament-relation-manager-component/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/fde04a421ae22da51acb78f62cce0fb0ac9a6333e88173454db8a9ec3ec88e14/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f6e6a78716c75732f66696c616d656e742d72656c6174696f6e2d6d616e616765722d636f6d706f6e656e742f6669782d7068702d636f64652d7374796c652d6973737565732e796d6c3f6272616e63683d6d61696e266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/njxqlus/filament-relation-manager-component/actions?query=workflow%3A%22Fix+PHP+code+style+issues%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/0d9157f17982dc4aa09e48624835ac3b236063023af01c6e893a8d8357d07bb1/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6e6a78716c75732f66696c616d656e742d72656c6174696f6e2d6d616e616765722d636f6d706f6e656e742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/njxqlus/filament-relation-manager-component)

[![banner](https://github.com/njxqlus/filament-relation-manager-component/raw/main/.github/banner.png?raw=true)](https://github.com/njxqlus/filament-relation-manager-component/blob/main/.github/banner.png?raw=true)

Use Filament Relation Manager Everywhere!

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

[](#installation)

You can install the package via composer:

```
composer require njxqlus/filament-relation-manager-component
```

Optionally, you can publish the views using

```
php artisan vendor:publish --tag="filament-relation-manager-component-views"
```

Usage
-----

[](#usage)

Example below shows how to use different relation managers in tabs without lazy load.

```
public static function form(Schema $schema): Schema
{
    return $schema
        ->schema([
            Schemas\Components\Tabs::make()->tabs([
                Schemas\Components\Tabs\Tab::make('Versions')->schema([
                    \Njxqlus\Filament\Components\Forms\RelationManager::make()->manager(RelationManagers\VersionsRelationManager::class)->lazy(false)
                ]),
                Schemas\Components\Tabs\Tab::make('Stands')->schema([
                    \Njxqlus\Filament\Components\Forms\RelationManager::make()->manager(RelationManagers\StandsRelationManager::class)->lazy(false)
                ]),
                Schemas\Components\Tabs\Tab::make('Contexts')->schema([
                    \Njxqlus\Filament\Components\Forms\RelationManager::make()->manager(RelationManagers\ContextsRelationManager::class)->lazy(false)
                ]),
            ])
        ]);
}

public static function infolist(Schema $schema): Schema
{
    return $schema->schema([
        Schemas\Components\Tabs::make()->tabs([
            Schemas\Components\Tabs\Tab::make('Versions')->schema([
                \Njxqlus\Filament\Components\Infolists\RelationManager::make()->manager(RelationManagers\VersionsRelationManager::class)->lazy(false)
            ]),
            Schemas\Components\Tabs\Tab::make('Stands')->schema([
                \Njxqlus\Filament\Components\Infolists\RelationManager::make()->manager(RelationManagers\StandsRelationManager::class)->lazy(false)
            ]),
            Schemas\Infolists\Components\Tabs\Tab::make('Contexts')->schema([
                \Njxqlus\Filament\Components\Infolists\RelationManager::make()->manager(RelationManagers\ContextsRelationManager::class)->lazy(false)
            ]),
        ])
    ]);
}
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](.github/CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [Mikael Ahabalyants](https://github.com/njxqlus)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

###  Health Score

60

—

FairBetter than 98% of packages

Maintenance90

Actively maintained with recent releases

Popularity46

Moderate usage in the ecosystem

Community25

Small or concentrated contributor base

Maturity66

Established project with proven stability

 Bus Factor1

Top contributor holds 63.7% 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 ~85 days

Recently: every ~47 days

Total

13

Last Release

10d ago

Major Versions

1.1.0 → 2.0.02025-09-26

1.1.2 → 2.2.02026-01-22

PHP version history (2 changes)1.0.0PHP ^8.1

2.0.0PHP ^8.3

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/15072672?v=4)[Mikael Ahabalyants](/maintainers/njxqlus)[@njxqlus](https://github.com/njxqlus)

---

Top Contributors

[![njxqlus](https://avatars.githubusercontent.com/u/15072672?v=4)](https://github.com/njxqlus "njxqlus (65 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (19 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (8 commits)")[![webard](https://avatars.githubusercontent.com/u/855788?v=4)](https://github.com/webard "webard (4 commits)")[![zvizvi](https://avatars.githubusercontent.com/u/4354421?v=4)](https://github.com/zvizvi "zvizvi (2 commits)")[![laravel-shift](https://avatars.githubusercontent.com/u/15991828?v=4)](https://github.com/laravel-shift "laravel-shift (2 commits)")[![claybitner](https://avatars.githubusercontent.com/u/868070?v=4)](https://github.com/claybitner "claybitner (1 commits)")[![anand-patel](https://avatars.githubusercontent.com/u/5024250?v=4)](https://github.com/anand-patel "anand-patel (1 commits)")

---

Tags

laravelfilamentnjxqlusfilament-relation-manager-component

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

Type Coverage Yes

### Embed Badge

![Health badge](/badges/njxqlus-filament-relation-manager-component/health.svg)

```
[![Health](https://phpackages.com/badges/njxqlus-filament-relation-manager-component/health.svg)](https://phpackages.com/packages/njxqlus-filament-relation-manager-component)
```

###  Alternatives

[rawilk/profile-filament-plugin

Profile &amp; MFA starter kit for filament.

3914.6k](/packages/rawilk-profile-filament-plugin)[stephenjude/filament-jetstream

A Laravel starter kit built with Filament inspired by Jetstream.

17760.2k3](/packages/stephenjude-filament-jetstream)[codewithdennis/filament-select-tree

The multi-level select field enables you to make single selections from a predefined list of options that are organized into multiple levels or depths.

329530.5k29](/packages/codewithdennis-filament-select-tree)[croustibat/filament-jobs-monitor

Background Jobs monitoring like Horizon for all drivers for FilamentPHP

274326.6k8](/packages/croustibat-filament-jobs-monitor)[stephenjude/filament-debugger

About

104162.2k2](/packages/stephenjude-filament-debugger)[dotswan/filament-map-picker

Easily pick and retrieve geo-coordinates using a map-based interface in your Filament applications.

128192.3k3](/packages/dotswan-filament-map-picker)

PHPackages © 2026

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