PHPackages                             toonday/laravel-bulksmsnigeria-notification - 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. toonday/laravel-bulksmsnigeria-notification

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

toonday/laravel-bulksmsnigeria-notification
===========================================

A laravel channel for bulk nigeria sms provider.

1.0.2(7y ago)2523[1 PRs](https://github.com/toondaey/laravel-bulksmsnigeria.com/pulls)MITPHPPHP ^5.4.0|^7.0

Since Aug 3Pushed 4y ago1 watchersCompare

[ Source](https://github.com/toondaey/laravel-bulksmsnigeria.com)[ Packagist](https://packagist.org/packages/toonday/laravel-bulksmsnigeria-notification)[ RSS](/packages/toonday-laravel-bulksmsnigeria-notification/feed)WikiDiscussions master Synced yesterday

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

Laravel Bulk SMS Nigeria(.com)
------------------------------

[](#laravel-bulk-sms-nigeriacom)

[![Build Status](https://camo.githubusercontent.com/0bcc90938035e2587e3a8d2ffe94273cb04528274485a3eac9ab12075861e4ec/68747470733a2f2f7472617669732d63692e6f72672f746f6f6e646165792f6c61726176656c2d62756c6b736d736e6967657269612e636f6d2e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/toondaey/laravel-bulksmsnigeria.com)

This is a laravel package for sending sms (or bulk sms) to local (Nigerian) phone numbers for **Laravel &gt;=5.3.\***.

Installation is pretty straight forward: use either

```
composer require toonday/laravel-bulksmsnigeria-notification
```

or add to your `composer.json` file:

```
{
    "require": {
        "toonday/laravel-bulksmsnigeria-notification": "~1.0"
    }
}
```

if using laravel &lt;=5.3.\*, add the provider to your `app.php` file like so:

```
"providers" => [
    ...
    "Toonday\BulkSMSNigeria\BulkSMSNigeriaServiceProvider",
    ...
]
```

Please do not forget to publish the config file with the `artisan` command like so:

```
php artisan vendor:publish --provider="Toonday\BulkSMSNigeria\BulkSMSNigeriaServiceProvider" --tag=config
```

and you're all good to go.

If you haven't, please proceed to the [bulksmsnigeria](https://www.bulksmsnigeria.com) to register and get your `api token`. Then include in your `.env` file the following:

```
BULKSMSNIGERIA_FROM=token
```

The package works just like your typical laravel built in notification package. Just add the notifiable trait to the model using the notification (typically the User model) as highlighted [here](https://laravel.com/docs/5.6/notifications#sending-notifications). Further, you should add this method to the same model so the package can know which property of the model to target:

```
public function routeNotificationForBulkSMSNigeria($notification)
{
    return $user->phone_number;
}
```

In your notification class, add the following lines:

```
...
use Toonday\BulkSMSNigeria\BulkSMSNigeriaChannel;
...

public function via($notifiable)
{
    return [BulkSMSNigeriaChannel::class];
}
```

To compose your message, you can follow the example below:

```
...
use Toonday\BulkSMSNigeria\BulkSMSMessage;
...

public function toBulkSmsNigeria($notifiable)
{
    return (new BulkSMSMessage)
                ->body('This a test message');
}
```

The BulkSMSMessage class provides the following methods for you:
----------------------------------------------------------------

[](#the-bulksmsmessage-class-provides-the-following-methods-for-you)

MethodsUsage`body`Content of the message`from`If not specified in the `.env` file, this method will set the `from` parameter. In the case where it has already been set, it'll take precedence and reset the parameter.With all that in place you can proceed to sending your text messages.

Happy coding.

###  Health Score

29

—

LowBetter than 60% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity13

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity61

Established project with proven stability

 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 ~27 days

Total

5

Last Release

2729d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/19edf450eea22ddaa059436542f1453dfa0d51dc991fbdaba041dc48ee86afb2?d=identicon)[toonday](/maintainers/toonday)

---

Top Contributors

[![toondaey](https://avatars.githubusercontent.com/u/17554487?v=4)](https://github.com/toondaey "toondaey (11 commits)")

---

Tags

laravelphp

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/toonday-laravel-bulksmsnigeria-notification/health.svg)

```
[![Health](https://phpackages.com/badges/toonday-laravel-bulksmsnigeria-notification/health.svg)](https://phpackages.com/packages/toonday-laravel-bulksmsnigeria-notification)
```

###  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)
