PHPackages                             keital/laravel-mobizon - 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. keital/laravel-mobizon

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

keital/laravel-mobizon
======================

Mobizon SMS notifications driver for Laravel

02PHP

Since Sep 10Pushed 3y agoCompare

[ Source](https://github.com/Keital/laravel-mobizon)[ Packagist](https://packagist.org/packages/keital/laravel-mobizon)[ RSS](/packages/keital-laravel-mobizon/feed)WikiDiscussions master Synced yesterday

READMEChangelogDependenciesVersions (1)Used By (0)

Mobizon notifications channel for Laravel
=========================================

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

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

[](#installation)

Install via composer:

```
composer require Alitvinov/LaravelMobizon

```

### Setting up your Mobizon service

[](#setting-up-your-mobizon-service)

Add your Mobizon credentials to `config/services.php` – a common file to store third-party service credentials.

```
// config/services.php
...
'mobizon' => [
    'domain' => '',
    'secret' => '',
    'alphaname' => null,
],
```

Usage
-----

[](#usage)

The package provides a new channel that can be used in your notification class like the following:

```
use Illuminate\Notifications\Notification;
use Alitvinov\LaravelMobizon\MobizonChannel;
use Alitvinov\LaravelMobizon\MobizonMessage;

public function via($notifiable)
{
    return [MobizonChannel::class];
}

public function toMobizon($notifiable)
{
    return MobizonMessage::create("Your SMS message");
}
```

Add a `routeNotificationForMobizon` method to your Notifiable model to return the phone number:

```
public function routeNotificationForMobizon()
{
    //Phone number without symbols or spaces
    return $this->phone_number;
}
```

Credits
-------

[](#credits)

Thanks to [laraketai](https://github.com/laraketai) for the original package.

License
-------

[](#license)

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

###  Health Score

14

—

LowBetter than 1% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity2

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity25

Early-stage or recently created project

 Bus Factor1

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

### Community

Maintainers

![](https://www.gravatar.com/avatar/1574875c179a4d17590321a619a2bb443c2636675f9f5416a66e58015f6aeb43?d=identicon)[adrianrp1988](/maintainers/adrianrp1988)

---

Top Contributors

[![adrianrp1988](https://avatars.githubusercontent.com/u/677320?v=4)](https://github.com/adrianrp1988 "adrianrp1988 (6 commits)")[![alitvinov-old](https://avatars.githubusercontent.com/u/986230?v=4)](https://github.com/alitvinov-old "alitvinov-old (3 commits)")

### Embed Badge

![Health badge](/badges/keital-laravel-mobizon/health.svg)

```
[![Health](https://phpackages.com/badges/keital-laravel-mobizon/health.svg)](https://phpackages.com/packages/keital-laravel-mobizon)
```

###  Alternatives

[maize-tech/laravel-email-domain-rule

Laravel Email Domain Rule

612.0k](/packages/maize-tech-laravel-email-domain-rule)

PHPackages © 2026

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