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

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

laraketai/mobizon
=================

Mobizon SMS notifications driver for Laravel

v1.08(4y ago)41.4k3[1 issues](https://github.com/laraketai/mobizon/issues)MITPHPPHP ^7.3|^8.0

Since Jan 4Pushed 4y agoCompare

[ Source](https://github.com/laraketai/mobizon)[ Packagist](https://packagist.org/packages/laraketai/mobizon)[ Docs](https://github.com/laraketai/mobizon)[ RSS](/packages/laraketai-mobizon/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (9)DependenciesVersions (10)Used By (0)

Mobizon notifications channel for Laravel 5.3+
==============================================

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

[![Latest Version on Packagist](https://camo.githubusercontent.com/8948e2424d27ecc766a6076ba064c6865fea0ed97d92b64569e0289d7c2f7626/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6c6172616b657461692f6d6f62697a6f6e2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/laraketai/mobizon)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![StyleCI](https://camo.githubusercontent.com/5be56c79ca9d40e001916201ee01b125235b932201e643bf8daf70178d737e06/68747470733a2f2f7374796c6563692e696f2f7265706f732f3136333938323435362f736869656c64)](https://styleci.io/repos/163982456)[![Total Downloads](https://camo.githubusercontent.com/bda919c67e007e3a44b9d0b35252c3f675474b8a2caab588b12517035b51f53d/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6c6172616b657461692f6d6f62697a6f6e2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/laraketai/mobizon)

This package makes it easy to send SMS notifications using [Mobizon](https://mobizon.kz) with Laravel 5.3.

Contents
--------

[](#contents)

- [Installation](#installation)
    - [Setting up the Mobizon service](#setting-up-the-Mobizon-service)
- [Usage](#usage)
    - [Available Message methods](#available-message-methods)
- [Changelog](#changelog)
- [Testing](#testing)
- [Security](#security)
- [Contributing](#contributing)
- [Credits](#credits)
- [License](#license)

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

[](#installation)

You can install this package via composer:

```
composer require laraketai/mobizon

```

Laravel 5.5 &lt; Add the service provider to `config/app.php`:

```
// config/app.php
'providers' => [
    ...
    Laraketai\Mobizon\MobizonServiceProvider::class,
],
```

Publish Config File `config/mobizon.php`:

```
php artisan vendor:publish --provider="Laraketai\Mobizon\MobizonServiceProvider"

```

### Setting up your Mobizon service

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

Log in to your [Mobizon](https://mobizon.kz/help/api-docs/sms-api) and grab your Api, Api Secret Key. Add them to `config/services.php`.

```
// config/mobizon.php
...
'mobizon' => [
    'alphaname' => null, //Optional, if you don't have registered alphaname, just skip this param and your message will be sent with our free common alphaname.
    'secret' => env('MOBIZON_APP_KEY'), // Your secret API key
],
```

Usage
-----

[](#usage)

Follow Laravel's documentation to add the channel your Notification class:

```
use Illuminate\Notifications\Notification;
use Laraketai\Mobizon\MobizonChannel;
use Laraketai\Mobizon\MobizonMessage;

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

public function toMobizon($notifiable)
{
    return MobizonMessage::create("Task #{$notifiable->id} is complete!");
}
```

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

### Available methods

[](#available-methods)

- `content()` - (string), SMS notification body

Changelog
---------

[](#changelog)

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

Testing
-------

[](#testing)

```
$ composer test
```

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)

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

License
-------

[](#license)

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

###  Health Score

33

—

LowBetter than 75% of packages

Maintenance15

Infrequent updates — may be unmaintained

Popularity24

Limited adoption so far

Community5

Small or concentrated contributor base

Maturity71

Established project with proven stability

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 ~123 days

Total

9

Last Release

1701d ago

PHP version history (5 changes)v1.0PHP &gt;=5.3.3

v1.04PHP ^7.2

v1.05PHP ^7.2.5

v1.07PHP ^7.3

v1.08PHP ^7.3|^8.0

### Community

Maintainers

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

---

Tags

phplaravelnotificationssmsmobizon

### Embed Badge

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

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

###  Alternatives

[tomatophp/filament-accounts

Manage your multi accounts inside your app using 1 table with multi auth and a lot of integrations

748.3k7](/packages/tomatophp-filament-accounts)[novu/novu-laravel

Novu for Laravel

12204.3k](/packages/novu-novu-laravel)[djunehor/laravel-sms

Send SMS from your laravel application

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

PHPackages © 2026

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