{"id":22398728,"url":"https://github.com/tappnetwork/filament-invite","last_synced_at":"2026-01-21T02:06:04.360Z","repository":{"id":232840289,"uuid":"782161767","full_name":"TappNetwork/Filament-Invite","owner":"TappNetwork","description":null,"archived":false,"fork":false,"pushed_at":"2025-11-24T05:08:07.000Z","size":347,"stargazers_count":31,"open_issues_count":2,"forks_count":6,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-12-05T16:12:29.931Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/TappNetwork.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":".github/CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":".github/SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":"Tapp"}},"created_at":"2024-04-04T18:53:29.000Z","updated_at":"2025-11-21T14:43:39.000Z","dependencies_parsed_at":"2024-06-28T12:27:22.672Z","dependency_job_id":"5175f48a-6671-4038-846e-bdfc59500a48","html_url":"https://github.com/TappNetwork/Filament-Invite","commit_stats":null,"previous_names":["tappnetwork/filament-invite"],"tags_count":14,"template":false,"template_full_name":"filamentphp/plugin-skeleton","purl":"pkg:github/TappNetwork/Filament-Invite","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TappNetwork%2FFilament-Invite","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TappNetwork%2FFilament-Invite/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TappNetwork%2FFilament-Invite/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TappNetwork%2FFilament-Invite/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TappNetwork","download_url":"https://codeload.github.com/TappNetwork/Filament-Invite/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TappNetwork%2FFilament-Invite/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28622473,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T23:49:58.628Z","status":"online","status_checked_at":"2026-01-21T02:00:08.227Z","response_time":86,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-12-05T07:11:59.956Z","updated_at":"2026-01-21T02:06:04.345Z","avatar_url":"https://github.com/TappNetwork.png","language":"PHP","funding_links":["https://github.com/sponsors/Tapp"],"categories":[],"sub_categories":[],"readme":"# Invite users from Filament panel\n\n[![Latest Version on Packagist](https://img.shields.io/packagist/v/tapp/filament-invite.svg?style=flat-square)](https://packagist.org/packages/tapp/filament-invite)\n![GitHub Tests Action Status](https://github.com/TappNetwork/Filament-Invite/actions/workflows/run-tests.yml/badge.svg)\n![GitHub Code Style Action Status](https://github.com/TappNetwork/Filament-Invite/actions/workflows/fix-php-code-style-issues.yml/badge.svg)\n[![Total Downloads](https://img.shields.io/packagist/dt/tapp/filament-invite.svg?style=flat-square)](https://packagist.org/packages/tapp/filament-invite)\n\nProvides an action to invite users from Filament users resource.\n\n## Version Compatibility\n\n Filament | Filament Invite\n:---------|:---------------\n 3.x      | 1.x\n 4.x      | 2.x\n\n## Installation\n\nYou can install the package via Composer:\n\n### For Filament 3\n\n```bash\ncomposer require tapp/filament-invite:\"^1.0\"\n```\n\n### For Filament 4\n\n```bash\ncomposer require tapp/filament-invite:\"^2.0\"\n```\n\nPlease check the docs for [Filament 4 here](https://github.com/TappNetwork/Filament-Invite/tree/2.x)\n\nYou can publish the config using:\n\n```bash\nphp artisan filament-invite:install\n```\n\n## Requirements\n\n-   User model which implements password resets and email verification (Laravel defaults)\n\n## Usage\n\nAdd invite action to a table\n\n```php\npublic static function table(Table $table): Table\n{\n    return $table\n        -\u003eactions([\n            \\Tapp\\FilamentInvite\\Tables\\InviteAction::make(),\n        ]);\n}\n```\n\nInvite action outside of a table uses a different class\n\n```php\n    protected function getHeaderActions(): array\n    {\n        return [\n            \\Tapp\\FilamentInvite\\Actions\\InviteAction::make(),\n        ];\n    }\n\n```\n\n## Customization\n\n### Reset URL\n\nimplement getResetPasswordUrl on the user model\n\n```php\npublic function getResetPasswordUrl(string $token, array $parameters = []): string\n{\n    return URL::signedRoute(\n        'filament.admin.auth.password-reset.reset',\n        [\n            'email' =\u003e $this-\u003eemail,\n            'token' =\u003e $token,\n            ...$parameters,\n        ],\n    );\n}\n```\n\n### Notification\n\nimplement the sendPasswordSetNotification method on the user model\n\n```php\npublic function sendPasswordSetNotification($token)\n{\n    Notification::send($this, new SetPassword($token));\n}\n```\n\n## Testing\n\n```bash\ncomposer test\n```\n\n## Changelog\n\nPlease see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.\n\n## Contributing\n\nPlease see [CONTRIBUTING](.github/CONTRIBUTING.md) for details.\n\n## Security Vulnerabilities\n\nPlease review [our security policy](../../security/policy) on how to report security vulnerabilities.\n\n## Credits\n\n-   [TappNetwork](https://github.com/scottgrayson)\n-   [All Contributors](../../contributors)\n\n## License\n\nThe MIT License (MIT). Please see [License File](LICENSE.md) for more information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftappnetwork%2Ffilament-invite","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftappnetwork%2Ffilament-invite","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftappnetwork%2Ffilament-invite/lists"}