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

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

yakimka/laravel-notification-channel-turbosms
=============================================

Turbo SMS Notification channel for Laravel 5.3+.

v2.0.1(4y ago)211.3k↓35.7%5[1 PRs](https://github.com/yakimka/laravel-notification-channel-turbosms/pulls)MITPHPPHP &gt;=7.2

Since Jun 8Pushed 1y ago1 watchersCompare

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

READMEChangelog (2)Dependencies (5)Versions (11)Used By (0)

[![StyleCI](https://camo.githubusercontent.com/44c1667f6952d91b12046ae174b44e17925714258cf048cbf15d68ffdab86faa/68747470733a2f2f6769746875622e7374796c6563692e696f2f7265706f732f39303937363437342f736869656c643f6272616e63683d6d6173746572)](https://github.styleci.io/repos/90976474?branch=master) [![Latest Stable Version](https://camo.githubusercontent.com/b54b89a407e3a45b15214bdc8f172f035841147c866e506b8f9f80051f446e63/687474703a2f2f706f7365722e707567782e6f72672f79616b696d6b612f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c2d747572626f736d732f76)](https://packagist.org/packages/yakimka/laravel-notification-channel-turbosms) [![Total Downloads](https://camo.githubusercontent.com/44d7f998647e9223522e961751f5619d2dca5b184ecf5a43a47849f9d20a0490/687474703a2f2f706f7365722e707567782e6f72672f79616b696d6b612f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c2d747572626f736d732f646f776e6c6f616473)](https://packagist.org/packages/yakimka/laravel-notification-channel-turbosms) [![License](https://camo.githubusercontent.com/907b7a0e1904405284f5264f26b4c301d11c58f4a39c2475d586a646b508e87d/687474703a2f2f706f7365722e707567782e6f72672f79616b696d6b612f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c2d747572626f736d732f6c6963656e7365)](https://packagist.org/packages/yakimka/laravel-notification-channel-turbosms)

Turbo SMS notifications channel for Laravel 5.3+
================================================

[](#turbo-sms-notifications-channel-for-laravel-53)

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/) (SOAP) with Laravel 5.3+

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)

Firstly you need working [soap extension](https://www.php.net/manual/en/soap.setup.php).

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 SOAP login, SOAP 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' => 'BRAND',
    'url' => 'http://turbosms.in.ua/api/wsdl.html',
],
...
```

You need to publish `Illuminate\Notifications\NotificationServiceProvider` files first.

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;
}
```

or you can send notification in this way:

```
Notification::route('turbosms', '+380501234567')->notify(new AccountApproved());
```

or with multiple receivers:

```
Notification::route('turbosms', '+380501234567,+380631234567')->notify(new AccountApproved());
```

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

39

—

LowBetter than 86% of packages

Maintenance35

Infrequent updates — may be unmaintained

Popularity30

Limited adoption so far

Community14

Small or concentrated contributor base

Maturity64

Established project with proven stability

 Bus Factor1

Top contributor holds 88.5% 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 ~193 days

Recently: every ~316 days

Total

9

Last Release

1721d ago

Major Versions

v1.3 → v2.0.02021-08-31

PHP version history (2 changes)v1.0.0PHP &gt;=5.6.4

v2.0.0PHP &gt;=7.2

### Community

Maintainers

![](https://www.gravatar.com/avatar/ba3fbc08c6e230fe3b4c3468b91a300e9ccd5db45ba2674e9df7a69c782092e5?d=identicon)[yakimka](/maintainers/yakimka)

---

Top Contributors

[![yakimka](https://avatars.githubusercontent.com/u/28621349?v=4)](https://github.com/yakimka "yakimka (23 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

laravelnotificationsturbosmslaravelnotificationsturbosms

###  Code Quality

TestsPHPUnit

Code StylePHP CS Fixer

### Embed Badge

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

```
[![Health](https://phpackages.com/badges/yakimka-laravel-notification-channel-turbosms/health.svg)](https://phpackages.com/packages/yakimka-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)
