PHPackages                             owenoj/laravel-bigmsgbox - 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. owenoj/laravel-bigmsgbox

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

owenoj/laravel-bigmsgbox
========================

Laravel notification channel for bigmsgbox

v1.3.4(3y ago)129MITPHPPHP ^7.4|^8.0

Since Jul 4Pushed 3y ago1 watchersCompare

[ Source](https://github.com/Owen-oj/laravel-bigmsgbox)[ Packagist](https://packagist.org/packages/owenoj/laravel-bigmsgbox)[ Docs](https://github.com/owenoj/laravel-bigmsgbox)[ RSS](/packages/owenoj-laravel-bigmsgbox/feed)WikiDiscussions main Synced yesterday

READMEChangelog (8)Dependencies (4)Versions (9)Used By (0)

Bigmsgbox notifications channel for Laravel
===========================================

[](#bigmsgbox-notifications-channel-for-laravel)

[![Latest Version on Packagist](https://camo.githubusercontent.com/b9b18bd16b7146aea1271514cd57fe06891ce4b3370106dcaa4db29475fd38e3/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6f77656e6f6a2f6c61726176656c2d6269676d7367626f782e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/owenoj/laravel-bigmsgbox)[![Total Downloads](https://camo.githubusercontent.com/8b573786dec8d615d17aa45ea25d480ab4b55d762fc1e42fbc16d79c02e83246/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6f77656e6f6a2f6c61726176656c2d6269676d7367626f782e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/owenoj/laravel-bigmsgbox)

This package makes it easy to send Bigmsgbox sms notifications with Laravel 8+

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

[](#installation)

You can install the package via composer:

```
composer require owenoj/laravel-bigmsgbox
```

Configuration
-------------

[](#configuration)

```
BIGMSGBOX_API_KEY=ABXCDSD
BIGMSGBOX_API_SECRET=HFHFK992
BIGMSGBOX_SENDERID=MyCompany
```

Usage
-----

[](#usage)

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

```
use Owenoj\LaravelBigmsgbox\BigmsgboxChannel;
use Illuminate\Notifications\Notification;

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

    public function toBigmsgbox($notifiable)
    {
        return "Your  account was approved!";//your message
    }
}
```

You can also send sms via Facade like so:

```
namespace App\Http\Controllers;

use Owenoj\LaravelBigmsgbox\Bigmsgbox;
use Illuminate\Notifications\Notification;

class AccountController extends Controller
{

    public function sendsms()
    {
        $message = "Your  account was approved!";
        $to = '2331234567890';
        return Bigmsgbox::send($to,$message);
    }
}
```

In order to let your Notification know which phone are you sending to, the channel will look for the phone\_number attribute of the Notifiable model. If you want to override this behaviour, add the **routeNotificationForBigmsgbox** method to your Notifiable model.

```
public function routeNotificationForBigmsgbox()
{
    return '2331234567890';
}
```

### Testing

[](#testing)

```
composer test
```

### Changelog

[](#changelog)

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

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

[](#contributing)

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

### Security

[](#security)

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

Credits
-------

[](#credits)

- [Owen Jubilant ](https://github.com/owenoj)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

Laravel Package Boilerplate
---------------------------

[](#laravel-package-boilerplate)

This package was generated using the [Laravel Package Boilerplate](https://laravelpackageboilerplate.com).

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity62

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

Recently: every ~15 days

Total

8

Last Release

1369d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/696072a2631e412e7034cdffb063a41ea7754c8a719e66cfed044004a9ac5d10?d=identicon)[Owen-oj](/maintainers/Owen-oj)

---

Top Contributors

[![Owen-oj](https://avatars.githubusercontent.com/u/13623015?v=4)](https://github.com/Owen-oj "Owen-oj (17 commits)")

---

Tags

laravellaravel-notification-channelslaravel-notificationssmssms-notificationslaravel-smsowenojlaravel-bigmsgboxsms-channelbigmsgbox

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/owenoj-laravel-bigmsgbox/health.svg)

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

###  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)[tzsk/sms

A robust and unified SMS gateway integration package for Laravel, supporting multiple providers.

320244.3k6](/packages/tzsk-sms)[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)

PHPackages © 2026

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