PHPackages                             tomatophp/filament-twilio - 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. [Mail &amp; Notifications](/categories/mail)
4. /
5. tomatophp/filament-twilio

ActiveLibrary[Mail &amp; Notifications](/categories/mail)

tomatophp/filament-twilio
=========================

Send Whatsapp messages using Twilio and native filament Notification Facade class

v1.0.1(1y ago)112.3k4[1 issues](https://github.com/tomatophp/filament-twilio/issues)MITPHPPHP ^8.1|^8.2

Since Jul 3Pushed 1y ago1 watchersCompare

[ Source](https://github.com/tomatophp/filament-twilio)[ Packagist](https://packagist.org/packages/tomatophp/filament-twilio)[ GitHub Sponsors](https://github.com/3x1io)[ RSS](/packages/tomatophp-filament-twilio/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (2)Dependencies (4)Versions (3)Used By (0)

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

Filament Twilio
===============

[](#filament-twilio)

[![Latest Stable Version](https://camo.githubusercontent.com/7773eebd58f0155ca9c28ca58c132e02bf24a9d0914de8e06649f48636d4d48a/68747470733a2f2f706f7365722e707567782e6f72672f746f6d61746f7068702f66696c616d656e742d7477696c696f2f76657273696f6e2e737667)](https://packagist.org/packages/tomatophp/filament-twilio)[![License](https://camo.githubusercontent.com/115df6343aa0c53f861ee667beddff70229fe07a920582e9833c3331cf51f77e/68747470733a2f2f706f7365722e707567782e6f72672f746f6d61746f7068702f66696c616d656e742d7477696c696f2f6c6963656e73652e737667)](https://packagist.org/packages/tomatophp/filament-twilio)[![Downloads](https://camo.githubusercontent.com/4a06dc5bf4b2230420c35c72e31d3722e69ff8818d9953927833e1df593c152f/68747470733a2f2f706f7365722e707567782e6f72672f746f6d61746f7068702f66696c616d656e742d7477696c696f2f642f746f74616c2e737667)](https://packagist.org/packages/tomatophp/filament-twilio)

Send Whatsapp messages using Twilio and native filament Notification Facade class

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

[](#screenshots)

[![Message](https://raw.githubusercontent.com/tomatophp/filament-twilio/master/arts/message.png)](https://raw.githubusercontent.com/tomatophp/filament-twilio/master/arts/message.png)

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

[](#installation)

```
composer require tomatophp/filament-twilio
```

Using
-----

[](#using)

first of all you need to add this variables to your `.env` file

```
TWILIO_SID=
TWILIO_TOKEN=
TWILIO_SENDER_NUMBER=
```

then clear you cache

```
php artisan config:cache
```

now on your User model add this trait

```
use TomatoPHP\FilamentTwilio\Traits\InteractsWithTwilioWhatsapp;

class User extends Authenticatable
{
    use InteractsWithTwilioWhatsapp;
}
```

now you are ready to use the notification

```
\Filament\Notifications\Notification::make()
    ->body('Your Message You Like To Send Here!')
    ->sendToTwilioWhatsapp(
        user: $user,
        mediaURL: "https://images.unsplash.com/photo-1545093149-618ce3bcf49d?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=668&q=80"
    );
```

or you can use it from user model direct

```
$user->notifyTwilioWhatsapp(
    message: 'Your Message You Like To Send Here!',
    mediaURL: "https://images.unsplash.com/photo-1545093149-618ce3bcf49d?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=668&q=80"
);
```

Publish Assets
--------------

[](#publish-assets)

you can publish config file by use this command

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

Other Filament Packages
-----------------------

[](#other-filament-packages)

Checkout our [Awesome TomatoPHP](https://github.com/tomatophp/awesome)

###  Health Score

34

—

LowBetter than 77% of packages

Maintenance33

Infrequent updates — may be unmaintained

Popularity29

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity53

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% 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 ~0 days

Total

2

Last Release

678d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/2147eb2fca7ab5f0124d0fafd88ba2d2a5dfa3a0036fb8872d1084b7cba29366?d=identicon)[fadymondy](/maintainers/fadymondy)

---

Top Contributors

[![fadymondy](https://avatars.githubusercontent.com/u/11937812?v=4)](https://github.com/fadymondy "fadymondy (6 commits)")

---

Tags

filamentfilament-pluginintegrationtwiliophplaravelnotificationtwiliowhatsappfilamentfilament-plugin

### Embed Badge

![Health badge](/badges/tomatophp-filament-twilio/health.svg)

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

###  Alternatives

[laravel-notification-channels/twilio

Provides Twilio notification channel for Laravel

2587.7M12](/packages/laravel-notification-channels-twilio)[tomatophp/filament-pwa

get a PWA feature on your FilamentPHP app with settings from panel

8115.8k](/packages/tomatophp-filament-pwa)[tomatophp/filament-accounts

Manage your multi accounts inside your app using 1 table with multi auth and a lot of integrations

748.3k7](/packages/tomatophp-filament-accounts)[tomatophp/filament-invoices

Generate and manage your invoices / payments using multi currencies and multi types in FilamentPHP

993.9k](/packages/tomatophp-filament-invoices)[usamamuneerchaudhary/filament-notifier

A powerful notification system for FilamentPHP that handles multi-channel notifications with template management, scheduling, and real-time delivery. Built for developers who need enterprise-grade notifications without the complexity.

321.1k](/packages/usamamuneerchaudhary-filament-notifier)[tomatophp/filament-fcm

Firebase Cloud Messaging integration to Native FilamentPHP Notification Package

202.2k1](/packages/tomatophp-filament-fcm)

PHPackages © 2026

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