PHPackages                             atymic/laravel-notification-channel-sms-broadcast - 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. atymic/laravel-notification-channel-sms-broadcast

Abandoned → [laravel-notification-channels/sms-broadcast](/?search=laravel-notification-channels%2Fsms-broadcast)ArchivedLibrary[Mail &amp; Notifications](/categories/mail)

atymic/laravel-notification-channel-sms-broadcast
=================================================

SMS Broadcast Notification Channel

1.0.0(6y ago)02.7kMITPHPPHP &gt;=7.2

Since Jul 11Pushed 6y agoCompare

[ Source](https://github.com/atymic/laravel-notification-channel-sms-broadcast)[ Packagist](https://packagist.org/packages/atymic/laravel-notification-channel-sms-broadcast)[ Docs](https://github.com/atymic/laravel-notification-channel-sms-broadcast)[ RSS](/packages/atymic-laravel-notification-channel-sms-broadcast/feed)WikiDiscussions master Synced 5d ago

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

Sms Broadcast Notification Channel
==================================

[](#sms-broadcast-notification-channel)

Package Moved
-------------

[](#package-moved)

This package has moved to

Please update you composer.json to the new location. The namespacing has not changed, so you can just swap the packages out.

---

\## Old Readme This package makes it easy to send notifications using [Sms Broadcast](https://www.smsbroadcast.com.au/) with Laravel &gt; 5.6.

It uses my [Sms Broadcast PHP package](https://github.com/atymic/sms-broadcast-php) under the hood.

Contents
--------

[](#contents)

- [Installation](#installation)
    - \[Setting up the Sms Broadcast service\](#setting-up-the-Sms Broadcast-service)
- [Usage](#usage)
    - [Available Message methods](#available-message-methods)
- [Changelog](#changelog)
- [Testing](#testing)
- [Security](#security)
- [Contributing](#contributing)
- [Credits](#credits)
- [License](#license)

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

[](#installation)

Install the package using composer

```
composer require atymic/laravel-notification-channel-sms-broadcast
```

Add the configuration to your `services.php` config file:

```
'smsbroadcast' => [
    'username' => env('SMS_BROADCAST_USERNAME'),
    'password' => env('SMS_BROADCAST_PASSWORD'),
    'default_sender' => env('SMS_BROADCAST_DEFAULT_SENDER', null),
]
```

Usage
-----

[](#usage)

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

```
use Illuminate\Notifications\Notification;
use NotificationChannels\SmsBroadcast\SmsBroadcastMessage;
use NotificationChannels\SmsBroadcast\SmsBroadcastChannel;

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

    public function toSmsbroadcast($notifiable)
    {
        return (new SmsBroadcastMessage)
            ->content("Task #{$notifiable->id} is complete!");
    }
}
```

In your notifiable model, make sure to include a `routeNotificationForSmsbroadcast()` method, which returns an australian phone number.

```
public function routeNotificationForSmsbroadcast()
{
    return $this->phone; // 0412345678 or 6142345678
}
```

### Available methods

[](#available-methods)

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

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

`delay()`: Set a delay, in minutes before sending the message

`reference()`: Set the SMS ref code

Changelog
---------

[](#changelog)

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

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

[](#contributing)

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

Credits
-------

[](#credits)

- [atymic](https://github.com/atymic)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

###  Health Score

27

—

LowBetter than 47% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity16

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity54

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

Unknown

Total

1

Last Release

2550d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/65eb3a7ba2a2c13b3a9de48b836caf759ad4052f9a839e30464c80d177d5b3d2?d=identicon)[atymic](/maintainers/atymic)

---

Top Contributors

[![atymic](https://avatars.githubusercontent.com/u/50683531?v=4)](https://github.com/atymic "atymic (7 commits)")

---

Tags

laravellaravel-notification-channelslaravel-notificationssmssms-apisms-gateway

### Embed Badge

![Health badge](/badges/atymic-laravel-notification-channel-sms-broadcast/health.svg)

```
[![Health](https://phpackages.com/badges/atymic-laravel-notification-channel-sms-broadcast/health.svg)](https://phpackages.com/packages/atymic-laravel-notification-channel-sms-broadcast)
```

###  Alternatives

[laravel-notification-channels/webpush

Web Push Notifications driver for Laravel.

9005.5M27](/packages/laravel-notification-channels-webpush)[spatie/laravel-health

Monitor the health of a Laravel application

87512.0M164](/packages/spatie-laravel-health)[propaganistas/laravel-disposable-email

Disposable email validator

6023.0M6](/packages/propaganistas-laravel-disposable-email)[laravel-notification-channels/apn

Apple APN Push Notification Channel

2022.2M8](/packages/laravel-notification-channels-apn)[illuminate/mail

The Illuminate Mail package.

5910.6M497](/packages/illuminate-mail)[laravel-notification-channels/expo

Expo Notifications Channel for Laravel

67628.6k1](/packages/laravel-notification-channels-expo)

PHPackages © 2026

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