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 today

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 54% of packages

Maintenance36

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity53

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

2446d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/e2d48f6bb91b1c87da461f491838e41b5f01465372b50f5ecbfd8380aee9c087?d=identicon)[yna](/maintainers/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-notification-channels/twilio

Provides Twilio notification channel for Laravel

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

Laravel notification driver for Discord.

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

Laravel FCM (Firebase Cloud Messaging) Notification Channel

210964.1k1](/packages/benwilkins-laravel-fcm-notification)[laravel-notification-channels/rocket-chat

Rocket.Chat Notifications channel for Laravel 5.6+

1345.5k](/packages/laravel-notification-channels-rocket-chat)

PHPackages © 2026

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