PHPackages                             tapp/filament-invite - 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. [Authentication &amp; Authorization](/categories/authentication)
4. /
5. tapp/filament-invite

ActiveLibrary[Authentication &amp; Authorization](/categories/authentication)

tapp/filament-invite
====================

invite users from filament panel

v2.0.4(1mo ago)3145.8k↓16.2%7[1 issues](https://github.com/TappNetwork/Filament-Invite/issues)MITPHPPHP ^8.2CI failing

Since Apr 10Pushed 1mo ago3 watchersCompare

[ Source](https://github.com/TappNetwork/Filament-Invite)[ Packagist](https://packagist.org/packages/tapp/filament-invite)[ Docs](https://github.com/tapp/filament-invite)[ GitHub Sponsors](https://github.com/Tapp)[ RSS](/packages/tapp-filament-invite/feed)WikiDiscussions 2.x Synced 1mo ago

READMEChangelog (10)Dependencies (26)Versions (23)Used By (0)

Invite users from Filament panel
================================

[](#invite-users-from-filament-panel)

[![Latest Version on Packagist](https://camo.githubusercontent.com/97515be5e1977b4bb979a8e82a374d2f8d1dfc9c882fd6273ff075f7d82970ef/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f746170702f66696c616d656e742d696e766974652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/tapp/filament-invite)[![GitHub Tests Action Status](https://github.com/TappNetwork/Filament-Invite/actions/workflows/run-tests.yml/badge.svg)](https://github.com/TappNetwork/Filament-Invite/actions/workflows/run-tests.yml/badge.svg)[![GitHub Code Style Action Status](https://github.com/TappNetwork/Filament-Invite/actions/workflows/fix-php-code-style-issues.yml/badge.svg)](https://github.com/TappNetwork/Filament-Invite/actions/workflows/fix-php-code-style-issues.yml/badge.svg)[![Total Downloads](https://camo.githubusercontent.com/27c958d5e9087afb5ebad7bea592d3e3f336520cff7bd7110191306b1eb19098/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f746170702f66696c616d656e742d696e766974652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/tapp/filament-invite)

Provides an action to invite users from Filament users resource.

Version Compatibility
---------------------

[](#version-compatibility)

FilamentFilament InviteDocumentation4.x/5.x2.xCurrent3.x1.x[Check the docs](https://github.com/TappNetwork/Filament-Invite/tree/1.x)Installation
------------

[](#installation)

You can install the package via Composer:

```
composer require tapp/filament-invite:"^2.0"
```

You can publish the config using:

```
php artisan filament-invite:install
```

Requirements
------------

[](#requirements)

- User model which implements password resets and email verification (Laravel defaults)

Usage
-----

[](#usage)

Add invite action to a table

```
public static function table(Table $table): Table
{
    return $table
        ->recordActions([
            \Tapp\FilamentInvite\Actions\InviteAction::make(),
        ]);
}
```

Add invite action to header actions in your resource view or edit page (e.g. `App\Filament\Resources\Users\Pages\EditUser.php` or `App\Filament\Resources\Users\Pages\ViewUser.php`), as the `InviteAction` resolves the user from the current record, which is available on edit and view pages.

```
    protected function getHeaderActions(): array
    {
        return [
            \Tapp\FilamentInvite\Actions\InviteAction::make(),
        ];
    }
```

Customization
-------------

[](#customization)

### Reset URL

[](#reset-url)

implement getResetPasswordUrl on the user model

```
public function getResetPasswordUrl(string $token, array $parameters = []): string
{
    return URL::signedRoute(
        'filament.admin.auth.password-reset.reset',
        [
            'email' => $this->email,
            'token' => $token,
            ...$parameters,
        ],
    );
}
```

### Notification

[](#notification)

implement the sendPasswordSetNotification method on the user model

```
public function sendPasswordSetNotification($token)
{
    Notification::send($this, new SetPassword($token));
}
```

Testing
-------

[](#testing)

```
composer test
```

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)

- [TappNetwork](https://github.com/scottgrayson)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

###  Health Score

56

—

FairBetter than 98% of packages

Maintenance88

Actively maintained with recent releases

Popularity42

Moderate usage in the ecosystem

Community19

Small or concentrated contributor base

Maturity63

Established project with proven stability

 Bus Factor3

3 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 ~39 days

Total

19

Last Release

53d ago

Major Versions

v1.0.9 → v2.0.02025-06-23

v1.0.10 → v2.0.22025-08-08

1.x-dev → v2.0.32026-01-21

PHP version history (2 changes)v1.0.0PHP ^8.1

v2.0.0PHP ^8.2

### Community

Maintainers

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

![](https://www.gravatar.com/avatar/4c469e4e441a135287b2154a0a39f543893cbe1e2c3ab066e3e7c66a974a39e2?d=identicon)[scottgrayson](/maintainers/scottgrayson)

---

Top Contributors

[![scottgrayson](https://avatars.githubusercontent.com/u/7796074?v=4)](https://github.com/scottgrayson "scottgrayson (18 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (18 commits)")[![andreia](https://avatars.githubusercontent.com/u/38911?v=4)](https://github.com/andreia "andreia (18 commits)")[![swilla](https://avatars.githubusercontent.com/u/304159?v=4)](https://github.com/swilla "swilla (16 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (13 commits)")[![andrii-trush](https://avatars.githubusercontent.com/u/14265776?v=4)](https://github.com/andrii-trush "andrii-trush (1 commits)")[![tanyudii](https://avatars.githubusercontent.com/u/39409106?v=4)](https://github.com/tanyudii "tanyudii (1 commits)")

---

Tags

laraveltappfilament-invite

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/tapp-filament-invite/health.svg)

```
[![Health](https://phpackages.com/badges/tapp-filament-invite/health.svg)](https://phpackages.com/packages/tapp-filament-invite)
```

###  Alternatives

[bezhansalleh/filament-shield

Filament support for `spatie/laravel-permission`.

2.8k2.9M88](/packages/bezhansalleh-filament-shield)[jeffgreco13/filament-breezy

A custom package for Filament with login flow, profile and teams support.

1.0k1.7M41](/packages/jeffgreco13-filament-breezy)[dutchcodingcompany/filament-socialite

Social login for Filament through Laravel Socialite

213914.9k9](/packages/dutchcodingcompany-filament-socialite)[stephenjude/filament-two-factor-authentication

Filament Two Factor Authentication: Google 2FA + Passkey Authentication

81158.7k4](/packages/stephenjude-filament-two-factor-authentication)[marcelweidum/filament-passkeys

Use passkeys in your filamentphp app

5925.8k](/packages/marcelweidum-filament-passkeys)[caresome/filament-auth-designer

Transform Filament's default auth pages into stunning, brand-ready experiences

3916.8k2](/packages/caresome-filament-auth-designer)

PHPackages © 2026

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