PHPackages                             chevgenio/smspilot-notification-channel - 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. chevgenio/smspilot-notification-channel

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

chevgenio/smspilot-notification-channel
=======================================

SmsPilot Notifications channel for Laravel

v1.0.0(5y ago)07MITPHPPHP &gt;=7.2

Since Mar 9Pushed 5y ago1 watchersCompare

[ Source](https://github.com/chevgenio/smspilot-notification-channel)[ Packagist](https://packagist.org/packages/chevgenio/smspilot-notification-channel)[ Docs](https://github.com/chevgenio/smspilot-notification-channel)[ RSS](/packages/chevgenio-smspilot-notification-channel/feed)WikiDiscussions master Synced today

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

SmsPilot notifications channel for Laravel 8.x
==============================================

[](#smspilot-notifications-channel-for-laravel-8x)

This package makes it easy to send notifications using [smspilot.ru](https://smspilot.ru) with Laravel 8.x.

Contents
--------

[](#contents)

- [Installation](#installation)
    - [Setting up the SmsPilot service](#setting-up-the-SmsPilot-service)
- [Usage](#usage)
    - [Available Message methods](#available-methods)
- [Changelog](#changelog)
- [Testing](#testing)
- [License](#license)

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

[](#installation)

Install this package with Composer:

```
composer require chevgenio/smspilot-notification-channel
```

### Setting up the SmsPilot service

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

Add your SmsPilot api key, default sender name to your `config/services.php`:

```
// config/services.php
...
'smspilot' => [
    'apikey' => env('SMSPILOT_APIKEY'),
    'sender' => env('SMSPILOT_SENDER', 'INFORM'),
    'callback' => env('SMSPILOT_CALLBACK_URL', ''),
    'callback_method' => env('SMSPILOT_CALLBACK_METHOD', 'get'),
],
...
```

Usage
-----

[](#usage)

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

```
use Illuminate\Notifications\Notification;
use Chevgenio\SmsPilot\SmsPilotMessage;
use Chevgenio\SmsPilot\SmsPilotChannel;

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

    public function toSmsPilot($notifiable)
    {
        return (new SmsPilotMessage)
            ->content("Order successfully completed.");
    }
}
```

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

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

### Available methods

[](#available-methods)

`from()`: Sets the sender's name. *Make sure to register the sender name at you SmsPilot dashboard.*

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

`sendAt()`: Set a time for scheduling the notification message.

Changelog
---------

[](#changelog)

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

Testing
-------

[](#testing)

```
$ composer test
```

License
-------

[](#license)

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

###  Health Score

22

—

LowBetter than 21% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity48

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

1941d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/17574489?v=4)[Evgenii Ch](/maintainers/chevgenio)[@chevgenio](https://github.com/chevgenio)

---

Top Contributors

[![chevgenio](https://avatars.githubusercontent.com/u/17574489?v=4)](https://github.com/chevgenio "chevgenio (1 commits)")

---

Tags

laravelnotificationssmspilot

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/chevgenio-smspilot-notification-channel/health.svg)

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

###  Alternatives

[laravel/horizon

Dashboard and code-driven configuration for Laravel queues.

4.2k95.4M300](/packages/laravel-horizon)[spatie/laravel-health

Monitor the health of a Laravel application

87512.0M162](/packages/spatie-laravel-health)[roots/acorn

Framework for Roots WordPress projects built with Laravel components.

9762.4M129](/packages/roots-acorn)[laravel-notification-channels/discord

Laravel notification driver for Discord.

2401.4M16](/packages/laravel-notification-channels-discord)[laravel-notification-channels/pusher-push-notifications

Pusher native Push Notifications driver.

281788.6k1](/packages/laravel-notification-channels-pusher-push-notifications)[illuminate/notifications

The Illuminate Notifications package.

513.1M1.1k](/packages/illuminate-notifications)

PHPackages © 2026

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