PHPackages                             powertic/utalk-notification-channel - 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. powertic/utalk-notification-channel

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

powertic/utalk-notification-channel
===================================

Utalk Laravel Notifications Channel

1.0.1(5y ago)112[1 issues](https://github.com/powerticmkt/laravel-utalk-notification-channel/issues)MITPHPPHP ^7.2.5 || ^8.0

Since Jan 22Pushed 5y ago2 watchersCompare

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

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

Utalk notification channel for Laravel
======================================

[](#utalk-notification-channel-for-laravel)

This package makes it easy to send [Utalk](https://utalk.umbler.com/) messages using the Laravel notification system. Supports 5.5+, 6.x, 7.x and 8.x.

Contents
--------

[](#contents)

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

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

[](#installation)

You can install the package via composer:

```
composer require powertic/utalk-notification-channel
```

Setup
-----

[](#setup)

Add your Utalk token on `app/services.php` file. You can get your API Token [here](https://utalk.umbler.com/site/api/enviarmensagem).

```
...

'utalk' => [
    'token' => env('UTALK_TOKEN'),
],
```

**You need to create a `UTALK_TOKEN` on your `.env` file.**

Usage
-----

[](#usage)

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

```
use Powertic\Utalk\UtalkChannel;
use Powertic\Utalk\UtalkMessage;
use Illuminate\Notifications\Notification;

class TeamCreated extends Notification
{

    /**
     * Get the notification's delivery channels.
     *
     * @param  mixed  $notifiable
     * @return array
     */
    public function via($notifiable)
    {
        return [UtalkChannel::class];
    }

    /**
     * Get the UTalk representation of the notification.
     *
     * @param  mixed  $notifiable
     * @return \Powertic\Utalk\UtalkMessage
     */
    public function toUtalk($notifiable)
    {
        return UtalkMessage::create()
            ->message("Hello World!");
    }
}
```

In order to let your Notification know which number should receive the message, add the `routeNotificationForUtalk` method to your Notifiable model.

**This method expects a [valid E.164 mobile number](https://en.wikipedia.org/wiki/E.164) where the notification will be sent.**

```
/**
 * Route notifications for the Utalk channel.
 *
 * @return string
*/
public function routeNotificationForUtalk()
{
    return $this->mobile;
}
```

### Available methods

[](#available-methods)

- `message('Hello World!')`: Accepts a string as message to send.

Changelog
---------

[](#changelog)

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

Testing
-------

[](#testing)

```
$ composer test
```

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)

- [Luiz Eduardo (@luizeof)](https://github.com/luizeof)
- [Powertic](https://github.com/powerticmkt)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

###  Health Score

21

—

LowBetter than 19% of packages

Maintenance0

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity59

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

1934d ago

### Community

Maintainers

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

---

Top Contributors

[![luizeof](https://avatars.githubusercontent.com/u/257004?v=4)](https://github.com/luizeof "luizeof (3 commits)")

---

Tags

laravellaravel-packageutalkwhatsapp-api

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/powertic-utalk-notification-channel/health.svg)

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

###  Alternatives

[laravel-notification-channels/telegram

Telegram Notifications Channel for Laravel

1.1k3.4M35](/packages/laravel-notification-channels-telegram)[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)[laravel-notification-channels/microsoft-teams

A Laravel Notification Channel for Microsoft Teams

1603.0M7](/packages/laravel-notification-channels-microsoft-teams)[laravel-notification-channels/discord

Laravel notification driver for Discord.

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

Amazon Simple Notification Service (AWS SNS) notification channel for Laravel.

541.1M2](/packages/laravel-notification-channels-aws-sns)

PHPackages © 2026

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