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

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

quadrogod/laravel-mobizon
=========================

Mobizon SMS notifications driver for Laravel

v2.0.1(2y ago)06MITPHPPHP ^7.2.5 || ^8.0

Since Dec 23Pushed 2y agoCompare

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

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

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

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

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

[](#installation)

Install via composer:

```
composer require quadrogod/laravel-mobizon

```

### 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 Quadrogod\LaravelMobizon\MobizonChannel;
use Quadrogod\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) and [Alitvinov](https://github.com/Alitvinov) for the original package.

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

Community8

Small or concentrated contributor base

Maturity49

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 60% 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 ~0 days

Total

2

Last Release

922d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/5109038?v=4)[quadrogod](/maintainers/quadrogod)[@quadrogod](https://github.com/quadrogod)

---

Top Contributors

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

---

Tags

phplaravelnotificationssmsmobizon

###  Code Quality

TestsPHPUnit

### Embed Badge

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

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

###  Alternatives

[ellaisys/aws-cognito

Laravel Authentication using AWS Cognito (Web and API)

123256.9k1](/packages/ellaisys-aws-cognito)[djunehor/laravel-sms

Send SMS from your laravel application

395.7k1](/packages/djunehor-laravel-sms)

PHPackages © 2026

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