PHPackages                             fomvasss/laravel-notification-channel-turbo-sms - 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. fomvasss/laravel-notification-channel-turbo-sms

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

fomvasss/laravel-notification-channel-turbo-sms
===============================================

This package makes it easy to send notifications using \[turbosms.ua\](https://turbosms.ua) with Laravel 5.5+

1.5.1(4mo ago)36.7k—10%2[1 PRs](https://github.com/fomvasss/laravel-notification-channel-turbosms/pulls)MITPHPPHP &gt;=7.2

Since Dec 13Pushed 3mo ago1 watchersCompare

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

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

TurboSms notifications channel for Laravel
==========================================

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

Here's the latest documentation on Laravel's Notifications System:

[![Latest Version on Packagist](https://camo.githubusercontent.com/aaf2d8c6a87d41430b97e2ae611f7d3cd1149bfa51cda18b2cd54d362f5e4c26/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f666f6d76617373732f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c2d747572626f2d736d732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/fomvasss/laravel-notification-channel-turbo-sms)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![Quality Score](https://camo.githubusercontent.com/23a26dd9bb471dbace8ef5bea9746a0b167f2933e0478b554a4e13a204e17951/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f666f6d76617373732f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c2d747572626f736d732e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/fomvasss/laravel-notification-channel-turbosms)[![Code Coverage](https://camo.githubusercontent.com/859b3f28afb9a7605d1d537d15782b20dacc3b9af2363ded3a07478a6784fb82/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f636f7665726167652f672f666f6d76617373732f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c2d747572626f736d732f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/fomvasss/laravel-notification-channel-turbosms/?branch=master)[![Total Downloads](https://camo.githubusercontent.com/b5db5786e8b39b8ca039a0dc1debcf10379d6eaef3f6493007d3dfe6dd958a40/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f666f6d76617373732f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c2d747572626f2d736d732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/fomvasss/laravel-notification-channel-turbo-sms)

This package makes it easy to send notifications using [turbosms.ua](https://turbosms.ua/) with Laravel. Send SMS messages, get account balance.

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

[](#installation)

Install this package with Composer:

```
composer require fomvasss/laravel-notification-channel-turbo-sms
```

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

[](#configuration)

Set API-token, default sender name (or phone number), test mode in `config/services.php`:

```
'turbosms' => [
    'api_token'  => env('TURBOSMS_API_TOKEN'),
    'sender'  => env('TURBOSMS_SENDER'),        // For testing use TAXI
    'is_test'  => env('TURBOSMS_IS_TEST'),      // Do not send real SMS if true

    // Optional
    'timeout'  => env('TURBOSMS_TIMEOUT'),
    'connect_timeout'  => env('TURBOSMS_CONNECT_TIMEOUT'),
],
```

and `.env` file:

```
TURBOSMS_API_TOKEN=your_api_token_here
TURBOSMS_SENDER=TAXI
TURBOSMS_IS_TEST=false

```

Also possible test senders: `TAXI, AKCIYA, BEAUTY, Best-offer, Best-Shop, BonusShop, IT Alarm, MAGAZIN, Dostavka24, SERVIS TAXI, BRAND`

Usage via notification
----------------------

[](#usage-via-notification)

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 (new TurboSmsMessage())->content("Hello SMS!!!")->test(true);
    }
}
```

In your notifiable model, make sure to include a `routeNotificationForTurboSms()` method, which returns a phone number or an array of phone numbers.

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

### Available notify methods

[](#available-notify-methods)

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

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

`time()`: Example argument = `time() + 7*60*60` - Postpone shipping for 7 hours.

`test()`: Test SMS sending (log)

Usage via service-container
---------------------------

[](#usage-via-service-container)

Get balance:

```
app(TurboSmsApi::class)->getBalance(); // null|float, example 123.45
```

Send message:

```
app(TurboSmsApi::class)->sendMessage('380969416874', new \NotificationChannels\TurboSms\TurboSmsMessage('Hello World with Laravel!')); // array, API response
```

Changelog
---------

[](#changelog)

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

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)

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

License
-------

[](#license)

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

###  Health Score

43

—

FairBetter than 91% of packages

Maintenance77

Regular maintenance activity

Popularity29

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity46

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

Every ~159 days

Recently: every ~115 days

Total

8

Last Release

139d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/4f99b460639e7d6871597882226b1e0d9e3055992eac8b22bfcd4f90fbdac95c?d=identicon)[fomvasss](/maintainers/fomvasss)

---

Top Contributors

[![fomvasss](https://avatars.githubusercontent.com/u/19834478?v=4)](https://github.com/fomvasss "fomvasss (10 commits)")

---

Tags

laravelnotificationssmsturbosmsturbo-sms

### Embed Badge

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

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

###  Alternatives

[laravel-notification-channels/twilio

Provides Twilio notification channel for Laravel

2587.7M12](/packages/laravel-notification-channels-twilio)

PHPackages © 2026

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