PHPackages                             codemonkey76/plivo-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. codemonkey76/plivo-notification-channel

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

codemonkey76/plivo-notification-channel
=======================================

Plivo SMS notifications driver for Laravel

1.0.6(4y ago)045MITPHPPHP ^8.0

Since May 28Pushed 4y ago1 watchersCompare

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

READMEChangelogDependencies (2)Versions (7)Used By (0)

Plivo notifications channel for Laravel
=======================================

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

This package makes it easy to send SMS notifications using [Plivo](https://plivo.com) with Laravel 8.x.

This package is a copy of laravel-notification-channel/plivo as that package is currently broken for Laravel 8 and current version of plivo/plivo-php

Contents
--------

[](#contents)

- [Installation](#installation)
    - [Setting up the Plivo service](#setting-up-the-Plivo-service)
- [Usage](#usage)
    - [Available Message methods](#available-message-methods)
- [Credits](#credits)
- [License](#license)

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

[](#installation)

Install the package via composer:

```
composer require codemonkey76/plivo-notification-channel
```

### Setting up your Plivo service

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

Log in to your [Plivo dashboard](https://manage.plivo.com/dashboard/) and grab your Auth Id, Auth Token and the phone number you're sending from. Add them to `config/services.php`.

```
// config/services.php
...
'plivo' => [
    'auth_id' => env('PLIVO_AUTH_ID'),
    'auth_token' => env('PLIVO_AUTH_TOKEN'),
    // Country code, area code and number without symbols or spaces
    'from_number' => env('PLIVO_FROM_NUMBER'),
],
```

Usage
-----

[](#usage)

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

```
use Illuminate\Notifications\Notification;
use Codemonkey76\Plivo\PlivoChannel;
use Codemonkey76\Plivo\PlivoMessage;

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

public function toPlivo($notifiable)
{
    return (new PlivoMessage)
                    ->content('This is a test SMS via Plivo using Laravel Notifications!');
}
```

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

```
public function routeNotificationForPlivo()
{
    // Country code, area code and number without symbols or spaces
    return preg_replace('/\D+/', '', $this->phone_number);
}
```

### Available methods

[](#available-methods)

- `content()` - (string), SMS notification body
- `from()` - (integer) Override default from number

Credits
-------

[](#credits)

- [Sid K](https://github.com/koomai)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity61

Established project with proven stability

 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

Every ~1 days

Total

6

Last Release

1804d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/3654457?v=4)[Shane Poppleton](/maintainers/codemonkey76)[@codemonkey76](https://github.com/codemonkey76)

---

Top Contributors

[![codemonkey76](https://avatars.githubusercontent.com/u/3654457?v=4)](https://github.com/codemonkey76 "codemonkey76 (7 commits)")

---

Tags

laravelnotificationsplivo

### Embed Badge

![Health badge](/badges/codemonkey76-plivo-notification-channel/health.svg)

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

###  Alternatives

[edvinaskrucas/notification

Package for Laravel for helping to manage flash / instant notifications / messages.

520393.9k10](/packages/edvinaskrucas-notification)[simplesoftwareio/simple-sms

Simple-SMS is a package made for Laravel to send/receive (polling/pushing) text messages. Currently supports CalLFire, EZTexting, Email Gateways, FlowRoute, LabsMobile, Mozeo, Nexmo, Plivo, Twilio, and Zenvia

20845.7k5](/packages/simplesoftwareio-simple-sms)[gr8shivam/laravel-sms-api

A modern, flexible Laravel package for integrating any SMS gateway with REST API support

10138.4k](/packages/gr8shivam-laravel-sms-api)[sarfraznawaz2005/laravel-sse

Laravel package to provide Server Sent Events functionality for your app.

474.6k](/packages/sarfraznawaz2005-laravel-sse)[usamamuneerchaudhary/filament-notifier

A powerful notification system for FilamentPHP that handles multi-channel notifications with template management, scheduling, and real-time delivery. Built for developers who need enterprise-grade notifications without the complexity.

321.1k](/packages/usamamuneerchaudhary-filament-notifier)

PHPackages © 2026

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