PHPackages                             grupodkt/notification-channel-waba - 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. grupodkt/notification-channel-waba

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

grupodkt/notification-channel-waba
==================================

Notification channel WABA.

v5.8.5(2mo ago)0313↓75%MITPHPPHP &gt;=7.0.0

Since Feb 21Pushed 2mo ago1 watchersCompare

[ Source](https://github.com/grupodkt/notification-channel-waba)[ Packagist](https://packagist.org/packages/grupodkt/notification-channel-waba)[ Docs](https://github.com/grupodkt/laravel-notification-channel-waba)[ RSS](/packages/grupodkt-notification-channel-waba/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (5)Versions (8)Used By (0)

Waba notifications channel for Laravel 5.4+
===========================================

[](#waba-notifications-channel-for-laravel-54)

[![Latest Version on Packagist](https://camo.githubusercontent.com/70963f76735da5393078118f18c5dcc4c44b64bbe6d3efdb9c243b635e60bf2b/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f677275706f646b742f6e6f74696669636174696f6e2d6368616e6e656c2d776162612e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/grupodkt/notification-channel-waba)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![Total Downloads](https://camo.githubusercontent.com/289790404a00f108eef787fda0b1f512bd1b64ea811dfae1fe984c23ff2bca3a/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f677275706f646b742f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c2d776162612e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/grupodkt/notification-channel-waba)

This package makes it easy to send \[Waba notifications\] with Laravel 5.4.

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

[](#installation)

Package VersionLaravel VersionGuzzle Version5.x565.x675.x7,8,96, 7Contents
--------

[](#contents)

- [Usage](#usage)
    - [Available Message methods](#available-message-methods)
- [Changelog](#changelog)
- [Testing](#testing)
- [Security](#security)
- [Contributing](#contributing)
- [Credits](#credits)
- [License](#license)

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

[](#installation-1)

You can install the package via composer:

```
composer require grupodkt/notification-channel-waba
```

You must install the service provider:

```
// config/app.php
'providers' => [
    ...
    NotificationChannels\Waba\WabaProvider::class,
],
```

### Setting up your Waba account

[](#setting-up-your-waba-account)

Add your Waba Account SID, Auth Token, and phoneNumberId to your `config/services.php`:

```
// config/services.php
...
'waba' => [
    'url'   => env('WABA_URL'),
    'token' => env('WABA_TOKEN'),
    'phoneNumberId' => env('WABA_PHONE_NUMBER_ID'),
],
...
```

Usage
-----

[](#usage)

Now you can use the channel in your `via()` method inside the notification:

```
use NotificationChannels\Waba\WabaChannel;
use NotificationChannels\Waba\WabaMessage;
use Illuminate\Notifications\Notification;

class AccountApproved extends Notification
{
    public function via($notifiable)
    {
        return [WabaChannel::class];
    }

    public function toWaba($notifiable)
    {
        return (new WabaMessage())
            ->content("Your {$notifiable->service} account was approved!");
    }
}
```

In order to let your Notification know which phone are you sending/calling to, the channel will look for the `celular` attribute of the Notifiable model. If you want to override this behaviour, add the `routeNotificationForWaba` method to your Notifiable model.

```
public function routeNotificationForWaba()
{
    return $this->mobile;
}
```

### Available Message methods

[](#available-message-methods)

#### WabaSmsMessage

[](#wabasmsmessage)

- `from('')`: Accepts a phone to use as the notification sender.
- `content('')`: Accepts a string value for the notification body.

Changelog
---------

[](#changelog)

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

Security
--------

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

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

[](#contributing)

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

Credits
-------

[](#credits)

- [GRUPODKT](https://github.com/grupodkt)

License
-------

[](#license)

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

###  Health Score

41

—

FairBetter than 89% of packages

Maintenance86

Actively maintained with recent releases

Popularity14

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity45

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 77.8% 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 ~183 days

Recently: every ~215 days

Total

7

Last Release

74d ago

Major Versions

v1.0.0 → v5.8.02023-02-21

### Community

Maintainers

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

---

Top Contributors

[![lecheverriaDkt](https://avatars.githubusercontent.com/u/66436637?v=4)](https://github.com/lecheverriaDkt "lecheverriaDkt (7 commits)")[![jgalindosl](https://avatars.githubusercontent.com/u/66330140?v=4)](https://github.com/jgalindosl "jgalindosl (1 commits)")[![RSagastume](https://avatars.githubusercontent.com/u/189255155?v=4)](https://github.com/RSagastume "RSagastume (1 commits)")

### Embed Badge

![Health badge](/badges/grupodkt-notification-channel-waba/health.svg)

```
[![Health](https://phpackages.com/badges/grupodkt-notification-channel-waba/health.svg)](https://phpackages.com/packages/grupodkt-notification-channel-waba)
```

###  Alternatives

[laravel-notification-channels/twilio

Provides Twilio notification channel for Laravel

2587.7M12](/packages/laravel-notification-channels-twilio)[laravel-notification-channels/telegram

Telegram Notifications Channel for Laravel

1.1k3.4M35](/packages/laravel-notification-channels-telegram)[laravel-notification-channels/discord

Laravel notification driver for Discord.

2371.3M11](/packages/laravel-notification-channels-discord)[laravel-notification-channels/fcm

FCM (Firebase Cloud Messaging) Notifications Driver for Laravel

5917.0M16](/packages/laravel-notification-channels-fcm)[s-ichikawa/laravel-sendgrid-driver

This library adds a 'sendgrid' mail driver to Laravel.

4139.3M1](/packages/s-ichikawa-laravel-sendgrid-driver)[roots/acorn

Framework for Roots WordPress projects built with Laravel components.

9682.1M97](/packages/roots-acorn)

PHPackages © 2026

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