PHPackages                             unicodeveloper/laravel-notification-channel-jusibe - 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. unicodeveloper/laravel-notification-channel-jusibe

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

unicodeveloper/laravel-notification-channel-jusibe
==================================================

Jusibe SMS Channel for Laravel 5.3

17PHP

Since Dec 25Pushed 9y ago1 watchersCompare

[ Source](https://github.com/unicodeveloper/laravel-notification-channel-jusibe)[ Packagist](https://packagist.org/packages/unicodeveloper/laravel-notification-channel-jusibe)[ RSS](/packages/unicodeveloper-laravel-notification-channel-jusibe/feed)WikiDiscussions master Synced 4w ago

READMEChangelogDependenciesVersions (1)Used By (0)

Jusibe notifications channel for Laravel 5.3 \[DEPRECATED\]
===========================================================

[](#jusibe-notifications-channel-for-laravel-53-deprecated)

[![Latest Version on Packagist](https://camo.githubusercontent.com/5462abd9629162d1232b3965be0167d11cb75626d1c8928dbbc542a0c9a69413/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f756e69636f646576656c6f7065722f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c2d6a75736962652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/unicodeveloper/laravel-notification-channel-jusibe)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![Build Status](https://camo.githubusercontent.com/b6ed381cbacb94569197043959245b0b6f8805ea4b65f8564fc78de6ee49d349/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f756e69636f646576656c6f7065722f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c2d6a75736962652f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/unicodeveloper/laravel-notification-channel-jusibe)[![Quality Score](https://camo.githubusercontent.com/4936f54f6979353e0a47d78a95601668029e3c484c1f194f077e1376a0aa72d9/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f756e69636f646576656c6f7065722f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c2d6a75736962652e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/unicodeveloper/laravel-notification-channel-jusibe)[![Total Downloads](https://camo.githubusercontent.com/84ad036039b6047d0cb42de041f87d42f3b4a7a154cb13233b770ee620693263/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f756e69636f646576656c6f7065722f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c2d6a75736962652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/unicodeveloper/laravel-notification-channel-jusibe)

This package makes it easy to send [Jusibe notifications](https://jusibe.com/docs/) with Laravel 5.3.

Notice: DON'T USE THIS, IT HAS BEEN DEPRECATED. THE NEW &amp; WORKING VERSION EXISTS HERE =&gt; [LARAVEL NOTIFICATION CHANNELS - JUSIBE](https://github.com/laravel-notification-channels/jusibe)
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

[](#notice-dont-use-this-it-has-been-deprecated-the-new--working-version-exists-here--laravel-notification-channels---jusibe)

Contents
--------

[](#contents)

- [Installation](#installation)
    - [Setting up your Jusibe account](#setting-up-your-jusibe-account)
- [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 the package via composer:

```
composer require unicodeveloper/laravel-notification-channel-jusibe
```

You must install the service provider:

```
// config/app.php
'providers' => [
    ...
    NotificationChannels\Jusibe\JusibeServiceProvider::class,
],
```

### Setting up your Jusibe account

[](#setting-up-your-jusibe-account)

Add your Jusibe Account Key, Acess Token, and From Number (optional) to your `config/services.php`:

```
// config/services.php
...
'jusibe' => [
    'key' => env('JUSIBE_PUBLIC_KEY'),
    'token' => env('JUSIBE_ACCESS_TOKEN'),
    'sms_from' => 'PROSPER'
]
...
```

Usage
-----

[](#usage)

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

```
use NotificationChannels\Jusibe\JusibeChannel;
use NotificationChannels\Jusibe\JusibeMessage;
use Illuminate\Notifications\Notification;

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

    public function toJusibe($notifiable)
    {
        return (new JusibeMessage())
            ->content("Your {$notifiable->service} account was approved!");
    }
}
```

In order to let your Notification know which phone are you sending to, add the `routeNotificationForJusibe` method to your Notifiable model e.g your User Model

```
public function routeNotificationForJusibe()
{
    return $this->phone; // where `phone` is a field in your users table;
}
```

### Available Message methods

[](#available-message-methods)

#### JusibeMessage

[](#jusibemessage)

- `from('')`: Accepts a phone to use as the notification sender.
- `content('')`: Accepts a string value for the 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)

- [Prosper Otemuyiwa](https://github.com/unicodeveloper)

License
-------

[](#license)

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

###  Health Score

21

—

LowBetter than 18% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor2

2 contributors hold 50%+ of commits

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/ae318eb1f5f21579ddee07834130c1169ae6a0771044c3de671dfb02cd79c59f?d=identicon)[unicodeveloper](/maintainers/unicodeveloper)

---

Top Contributors

[![unicodeveloper](https://avatars.githubusercontent.com/u/2946769?v=4)](https://github.com/unicodeveloper "unicodeveloper (12 commits)")[![freekmurze](https://avatars.githubusercontent.com/u/483853?v=4)](https://github.com/freekmurze "freekmurze (6 commits)")[![irazasyed](https://avatars.githubusercontent.com/u/1915268?v=4)](https://github.com/irazasyed "irazasyed (3 commits)")[![themsaid](https://avatars.githubusercontent.com/u/4332182?v=4)](https://github.com/themsaid "themsaid (3 commits)")[![mpociot](https://avatars.githubusercontent.com/u/804684?v=4)](https://github.com/mpociot "mpociot (2 commits)")[![casperboone](https://avatars.githubusercontent.com/u/15815208?v=4)](https://github.com/casperboone "casperboone (1 commits)")

---

Tags

channelsjusbijusibejusibe-notifications-channellaravellaravel-notification-channelsmailnotificationsphonesms

### Embed Badge

![Health badge](/badges/unicodeveloper-laravel-notification-channel-jusibe/health.svg)

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

###  Alternatives

[mattketmo/email-checker

Throwaway email detection library

2742.1M5](/packages/mattketmo-email-checker)[sarfraznawaz2005/noty

Laravel package to incorporate noty flash notifications into laravel.

324.5k](/packages/sarfraznawaz2005-noty)

PHPackages © 2026

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