PHPackages                             stepovenko/laravel-notification-channel-turbosms - 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. stepovenko/laravel-notification-channel-turbosms

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

stepovenko/laravel-notification-channel-turbosms
================================================

Turbo SMS Notification channel for Laravel 5.3+.

v1.3(5y ago)019MITPHPPHP &gt;=5.6.4

Since Jun 8Pushed 5y agoCompare

[ Source](https://github.com/Stepovenko-Denis/laravel-notification-channel-turbosms)[ Packagist](https://packagist.org/packages/stepovenko/laravel-notification-channel-turbosms)[ Docs](https://github.com/yakimka/laravel-notification-channel-turbosms)[ RSS](/packages/stepovenko-laravel-notification-channel-turbosms/feed)WikiDiscussions master Synced 3d ago

READMEChangelogDependencies (2)Versions (8)Used By (0)

Turbo SMS notifications channel for Laravel 5, 6, 7
===================================================

[](#turbo-sms-notifications-channel-for-laravel-5-6-7)

Based on [github.com/laravel-notification-channels/smsc-ru](https://github.com/laravel-notification-channels/smsc-ru)

This package made for send notifications using [turbosms.ua](https://turbosms.ua/) with Laravel 5, 6, 7.

Contents
--------

[](#contents)

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

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

[](#installation)

You can install the package via composer: `composer require yakimka/laravel-notification-channel-turbosms`

For Laravel &lt; 5.5 you must install the service provider:

```
// config/app.php
'providers' => [
    ...
    NotificationChannels\TurboSms\TurboSmsServiceProvider::class,
],
```

### Setting up the TurboSms service

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

Add your TurboSms login, secret key (hashed password) and default sender name (or phone number) to your `config/services.php`:

```
// config/services.php
...
'turbosms' => [
    'login' => env('TURBOSMS_LOGIN'),
    'secret' => env('TURBOSMS_SECRET'),
    'sender' => 'John Doe',
    'url' => 'http://turbosms.in.ua/api/wsdl.html',
],
...
```

Usage
-----

[](#usage)

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

```
use Illuminate\Notifications\Notification;
use NotificationChannels\TurboSms\TurboSmsMessage;
use NotificationChannels\TurboSms\TurboSmsChannel;

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

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

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

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

### Available methods

[](#available-methods)

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

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

Security
--------

[](#security)

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

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

[](#contributing)

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

Credits
-------

[](#credits)

- [yakimka](https://github.com/yakimka)
- [JhaoDa](https://github.com/jhaoda)

License
-------

[](#license)

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

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity63

Established project with proven stability

 Bus Factor1

Top contributor holds 73.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

Every ~179 days

Recently: every ~218 days

Total

7

Last Release

2185d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/413b77df97d5fabf7abb91a5f5d823ebb90b53fca707a194917f4a045ba630f3?d=identicon)[Stepovenko](/maintainers/Stepovenko)

---

Top Contributors

[![yakimka](https://avatars.githubusercontent.com/u/28621349?v=4)](https://github.com/yakimka "yakimka (14 commits)")[![stepovenko](https://avatars.githubusercontent.com/u/33463554?v=4)](https://github.com/stepovenko "stepovenko (2 commits)")[![demeshko](https://avatars.githubusercontent.com/u/10223031?v=4)](https://github.com/demeshko "demeshko (1 commits)")[![kalashs](https://avatars.githubusercontent.com/u/13327275?v=4)](https://github.com/kalashs "kalashs (1 commits)")[![p-andrey](https://avatars.githubusercontent.com/u/45175781?v=4)](https://github.com/p-andrey "p-andrey (1 commits)")

---

Tags

laravelnotificationsturbosms

### Embed Badge

![Health badge](/badges/stepovenko-laravel-notification-channel-turbosms/health.svg)

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

###  Alternatives

[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/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)
