PHPackages                             crispaezco/laravel-routee-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. crispaezco/laravel-routee-channel

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

crispaezco/laravel-routee-channel
=================================

Notification channel for routee.net

1.0.1(5y ago)011MITPHPPHP &gt;=7.0CI failing

Since Jun 14Pushed 5y ago1 watchersCompare

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

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

Routee notifications channel for Laravel 5.3+
=============================================

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

This package makes it easy to send SMS notifications using [routee.net](https://www.routee.net) with Laravel 5.3+.

Warning!
========

[](#warning)

Only Routee SMS is implemented at the moment, if you want more channels feel free to write them yourself in RouteeApi or point me to an API wrapper that we can switch to.

Contents
--------

[](#contents)

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

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

[](#installation)

Install this package with Composer:

```
composer require crispaezco/laravel-routee-channel
```

The service provider gets loaded automatically. Or you can do this manually:

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

### Setting up the Routee service

[](#setting-up-the-routee-service)

Add your Routee application id, application secret and sender id (from) to your `config/services.php`:

```
// config/services.php
'routee' => [
    'app_id'  => env('ROUTEE_APP_ID'),
    'secret' => env('ROUTEE_SECRET'),
    'from' => env('ROUTEE_SENDER_ID'),
],
```

Usage
-----

[](#usage)

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

```
use Illuminate\Notifications\Notification;
use NotificationChannels\Routee\RouteeMessage;
use NotificationChannels\Routee\RouteeChannel;

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

    public function toRoutee($notifiable)
    {
        return (new RouteeMessage)
            ->content("Your message here");
    }
}
```

In your notifiable model, make sure to include a `routeNotificationForRoutee()` method, which returns a phone number or an array of phone numbers.

```
public function routeNotificationForRoutee()
{
    return $this->phone;
}
```

### Available methods

[](#available-methods)

`content()`: Set a content of the notification message.

`sendAt()`: Set a time for scheduling the notification message.

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)

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

License
-------

[](#license)

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

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity5

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity51

Maturing project, gaining track record

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

Total

2

Last Release

2158d ago

### Community

Maintainers

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

---

Top Contributors

[![khryzpaez](https://avatars.githubusercontent.com/u/57879940?v=4)](https://github.com/khryzpaez "khryzpaez (5 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/crispaezco-laravel-routee-channel/health.svg)

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

###  Alternatives

[laravel-notification-channels/telegram

Telegram Notifications Channel for Laravel

1.1k3.4M35](/packages/laravel-notification-channels-telegram)[laravel-notification-channels/fcm

FCM (Firebase Cloud Messaging) Notifications Driver for Laravel

5917.0M16](/packages/laravel-notification-channels-fcm)[s-ichikawa/laravel-sendgrid-driver

This library adds a 'sendgrid' mail driver to Laravel.

4139.3M1](/packages/s-ichikawa-laravel-sendgrid-driver)[laravel-notification-channels/microsoft-teams

A Laravel Notification Channel for Microsoft Teams

1603.0M7](/packages/laravel-notification-channels-microsoft-teams)[laravel-notification-channels/discord

Laravel notification driver for Discord.

2371.3M11](/packages/laravel-notification-channels-discord)[spatie/laravel-export

Create a static site bundle from a Laravel app

646127.9k5](/packages/spatie-laravel-export)

PHPackages © 2026

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