PHPackages                             yna/laravel-cellact - 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. yna/laravel-cellact

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

yna/laravel-cellact
===================

Cellact Notifications channel for Laravel 5.3.

1.0.0(6y ago)020MITPHPPHP &gt;=7.0.0

Since Aug 29Pushed 1y ago1 watchersCompare

[ Source](https://github.com/ynacorp/laravel-cellact)[ Packagist](https://packagist.org/packages/yna/laravel-cellact)[ Docs](https://github.com/ynacorp/b-sms)[ RSS](/packages/yna-laravel-cellact/feed)WikiDiscussions master Synced 2w ago

READMEChangelog (1)Dependencies (5)Versions (2)Used By (0)

Cellact notifications channel for Laravel 5.3+
==============================================

[](#cellact-notifications-channel-for-laravel-53)

This package makes it easy to send notifications using cellact with Laravel 5.3+.

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

[](#installation)

You can install the package via composer:

```
composer require yna/laravel-cellact
```

Then you must install the service provider:

```
// config/app.php
'providers' => [
    ...
    Yna\Cellact\CellactServiceProvider::class,
],
```

### Setting up the Cellact service

[](#setting-up-the-cellact-service)

Add your Cellact account, user, password, from and company to your `config/services.php`:

```
// config/services.php
...
'cellact' => [
    'user' => env('CELLACT_USER'),
    'password' => env('CELLACT_PASSWORD'),
    'company' => env('CELLACT_COMPANY'),
    'from' => env('CELLACT_FROM'),
]
...
```

Usage
-----

[](#usage)

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

```
use Illuminate\Notifications\Notification;
use Yna\Cellact\CellactMessage;
use Yna\Cellact\CellactChannel;

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

    public function toBSms($notifiable)
    {
        return CellactMessage::create("Task #{$notifiable->id} is complete!");
    }
}
```

In your notifiable model, make sure to include a routeNotificationForPort2sms() method, which return the phone number.

```
public function routeNotificationForCellact()
{
    return $this->phone;
}
```

### Available methods

[](#available-methods)

`from()`: Sets the sender's name or phone number.

`content()`: Set a content of the notification message.

Security
--------

[](#security)

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

License
-------

[](#license)

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

###  Health Score

28

—

LowBetter than 52% of packages

Maintenance34

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity54

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 66.7% 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

Unknown

Total

1

Last Release

2498d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/9281862?v=4)[yna](/maintainers/yna)[@yna](https://github.com/yna)

---

Top Contributors

[![Paul-Triolla](https://avatars.githubusercontent.com/u/126390448?v=4)](https://github.com/Paul-Triolla "Paul-Triolla (2 commits)")[![shemi](https://avatars.githubusercontent.com/u/10219407?v=4)](https://github.com/shemi "shemi (1 commits)")

---

Tags

laravelnotificationsb-sms

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/yna-laravel-cellact/health.svg)

```
[![Health](https://phpackages.com/badges/yna-laravel-cellact/health.svg)](https://phpackages.com/packages/yna-laravel-cellact)
```

###  Alternatives

[laravel/horizon

Dashboard and code-driven configuration for Laravel queues.

4.2k95.4M284](/packages/laravel-horizon)[laravel-notification-channels/pusher-push-notifications

Pusher native Push Notifications driver.

282788.6k1](/packages/laravel-notification-channels-pusher-push-notifications)[laravel-notification-channels/twilio

Provides Twilio notification channel for Laravel

2588.1M15](/packages/laravel-notification-channels-twilio)[illuminate/notifications

The Illuminate Notifications package.

513.1M1.1k](/packages/illuminate-notifications)[laravel-notification-channels/discord

Laravel notification driver for Discord.

2401.4M14](/packages/laravel-notification-channels-discord)[salamwaddah/laravel-mandrill-driver

Mandrill notification channel for Laravel 9, 10, 11, 12, 13

1176.4k](/packages/salamwaddah-laravel-mandrill-driver)

PHPackages © 2026

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