PHPackages                             blamine19/blamine19accounts - 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. [API Development](/categories/api)
4. /
5. blamine19/blamine19accounts

ActiveLibrary[API Development](/categories/api)

blamine19/blamine19accounts
===========================

full accounts manager with API/Notifications/Contacts to manage your contacts and accounts

00PHP

Since Oct 13Pushed 1y agoCompare

[ Source](https://github.com/blamine19/blamine19accounts)[ Packagist](https://packagist.org/packages/blamine19/blamine19accounts)[ RSS](/packages/blamine19-blamine19accounts/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

[![Screenshot](https://raw.githubusercontent.com/tomatophp/filament-accounts/master/arts/3x1io-tomato-accounts.jpg)](https://raw.githubusercontent.com/tomatophp/filament-accounts/master/arts/3x1io-tomato-accounts.jpg)

Filament Accounts Builder
=========================

[](#filament-accounts-builder)

[![Latest Stable Version](https://camo.githubusercontent.com/f538c3ffedec0149a3533d4fa30049fe48c8f9ca39517ca2d5ff9046b5c0c3f2/68747470733a2f2f706f7365722e707567782e6f72672f746f6d61746f7068702f66696c616d656e742d6163636f756e74732f76657273696f6e2e737667)](https://packagist.org/packages/tomatophp/filament-accounts)[![License](https://camo.githubusercontent.com/b40792166eb618af8d048a9272c6490911bb8213d783851829ce9c8c9c89538d/68747470733a2f2f706f7365722e707567782e6f72672f746f6d61746f7068702f66696c616d656e742d6163636f756e74732f6c6963656e73652e737667)](https://packagist.org/packages/tomatophp/filament-accounts)[![Downloads](https://camo.githubusercontent.com/6f633bc4645e345e635bf5727db02f9d1c9a1ee19386d533b8008808fa5f27c4/68747470733a2f2f706f7365722e707567782e6f72672f746f6d61746f7068702f66696c616d656e742d6163636f756e74732f642f746f74616c2e737667)](https://packagist.org/packages/tomatophp/filament-accounts)

full accounts manager with API/Notifications/Contacts to manage your contacts and accounts

Screenshots
-----------

[](#screenshots)

[![Accounts List](https://raw.githubusercontent.com/tomatophp/filament-accounts/master/arts/accounts-list.png)](https://raw.githubusercontent.com/tomatophp/filament-accounts/master/arts/accounts-list.png)[![Change Password](https://raw.githubusercontent.com/tomatophp/filament-accounts/master/arts/change-password.png)](https://raw.githubusercontent.com/tomatophp/filament-accounts/master/arts/change-password.png)[![Send Notifications](https://raw.githubusercontent.com/tomatophp/filament-accounts/master/arts/send-notifications.png)](https://raw.githubusercontent.com/tomatophp/filament-accounts/master/arts/send-notifications.png)[![Edit Account](https://raw.githubusercontent.com/tomatophp/filament-accounts/master/arts/edit-account.png)](https://raw.githubusercontent.com/tomatophp/filament-accounts/master/arts/edit-account.png)[![Accounts Locations](https://raw.githubusercontent.com/tomatophp/filament-accounts/master/arts/account-locations.png)](https://raw.githubusercontent.com/tomatophp/filament-accounts/master/arts/account-locations.png)[![Accounts Requests](https://raw.githubusercontent.com/tomatophp/filament-accounts/master/arts/account-requests.png)](https://raw.githubusercontent.com/tomatophp/filament-accounts/master/arts/account-requests.png)[![Edit Request](https://raw.githubusercontent.com/tomatophp/filament-accounts/master/arts/edit-request.png)](https://raw.githubusercontent.com/tomatophp/filament-accounts/master/arts/edit-request.png)[![Contacts](https://raw.githubusercontent.com/tomatophp/filament-accounts/master/arts/contacts.png)](https://raw.githubusercontent.com/tomatophp/filament-accounts/master/arts/contacts.png)

Features
--------

[](#features)

- Accounts Manager
- Cached Meta
- Account Locations
- Account Teams
- Account Types
- Account Requests
- Account SaaS Panel With Edit Profile \[Jetstream\]
- Account Login By
- Account Active/Block
- Account Avatar
- Account OTP Activation
- Account Filament Alerts Integration
- Account Impersonate Integration
- Account APIs
- Auth Builder Service
- Support Multi Tenants
- Account Table Column
- Account Panel Events
- Attach New Field To Accounts
- Export
- Import
- Google Contacts Integrations

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

[](#installation)

```
composer require tomatophp/filament-accounts
```

after install your package please run this command

```
php artisan filament-accounts:install
```

if you are not using this package as a plugin please register the plugin on `/app/Providers/Filament/AdminPanelProvider.php`

```
->plugin(\TomatoPHP\FilamentAccounts\FilamentAccountsPlugin::make())
```

Publish Account Model
---------------------

[](#publish-account-model)

you can publish your account model to add other relations or implement some interfaces by using this command

```
php artisan vendor:publish --tag="filament-accounts-model"
```

now go to your `filament-accounts.php` config file and change the model value to the new one.

if you don't find it you can publish it

```
php artisan vendor:publish --tag="filament-accounts-config"

```

Add Accounts Guard
------------------

[](#add-accounts-guard)

now you need to add a new guard to your auth.php config like this

```
