PHPackages                             csgt/notification-channel-goip - 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. csgt/notification-channel-goip

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

csgt/notification-channel-goip
==============================

Notification channel GoIP.

v5.8.1(8mo ago)09741MITPHP

Since Sep 21Pushed 8mo ago1 watchersCompare

[ Source](https://github.com/csgt/laravel-notification-channel-goip)[ Packagist](https://packagist.org/packages/csgt/notification-channel-goip)[ Docs](https://github.com/csgt/laravel-notification-channels-goip)[ RSS](/packages/csgt-notification-channel-goip/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (1)Versions (8)Used By (0)

Direkto notifications channel for Laravel 5.4+
==============================================

[](#direkto-notifications-channel-for-laravel-54)

[![Latest Version on Packagist](https://camo.githubusercontent.com/3fba8ea4c9748be5348b1ebc939d5dc6a8a6b508978cecb411cbc76023bf4dab/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f637367742f6e6f74696669636174696f6e2d6368616e6e656c2d646972656b746f2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/csgt/notification-channel-direkto)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![Total Downloads](https://camo.githubusercontent.com/7242e9eda77667abdafd8a12fe8da5a293fdc95f6a917aa3ca86c1c500dd132e/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f637367742f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c2d646972656b746f2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/csgt/notification-channel-direkto)

This package makes it easy to send \[Direkto notifications\] with Laravel 5.4.

Contents
--------

[](#contents)

- [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 csgt/notification-channel-goip
```

You must install the service provider:

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

### Setting up your Direkto account

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

Add your Direkto Account SID, Auth Token, and From Number (optional) to your `config/services.php`:

```
// config/services.php
...
'goip' => [
        'account_url' => env('GOIP_URL'),
    ],
...
```

Usage
-----

[](#usage)

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

```
use Illuminate\Notifications\Notification;
use NotificationChannels\GoIP\GoIPChannel;
use NotificationChannels\GoIP\GoIPMessage;

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

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

In order to let your Notification know which phone are you sending/calling to, the channel will look for the `celular` attribute of the Notifiable model. If you want to override this behaviour, add the `routeNotificationForDirekto` method to your Notifiable model.

```
public function routeNotificationForDirekto()
{
    return $this->mobile;
}
```

### Available Message methods

[](#available-message-methods)

#### GoIPSmsMessage

[](#goipsmsmessage)

- `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.

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)

- [CS](https://github.com/csgt)

License
-------

[](#license)

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

###  Health Score

42

—

FairBetter than 90% of packages

Maintenance61

Regular maintenance activity

Popularity17

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity67

Established project with proven stability

 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.

###  Release Activity

Cadence

Every ~423 days

Recently: every ~576 days

Total

7

Last Release

249d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/0a0497db62ed2fba1bf1861e913f31ff83470ff152e44a9cee126a4774822c46?d=identicon)[csgt](/maintainers/csgt)

---

Top Contributors

[![jgalindosl](https://avatars.githubusercontent.com/u/66330140?v=4)](https://github.com/jgalindosl "jgalindosl (3 commits)")[![csgt](https://avatars.githubusercontent.com/u/7926376?v=4)](https://github.com/csgt "csgt (2 commits)")[![enriquebran](https://avatars.githubusercontent.com/u/5359771?v=4)](https://github.com/enriquebran "enriquebran (2 commits)")

### Embed Badge

![Health badge](/badges/csgt-notification-channel-goip/health.svg)

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

###  Alternatives

[laravel-notification-channels/telegram

Telegram Notifications Channel for Laravel

1.1k3.4M35](/packages/laravel-notification-channels-telegram)[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)[guanguans/notify

Push notification SDK(AnPush、Bark、Chanify、DingTalk、Discord、Gitter、GoogleChat、IGot、Lark、Mattermost、MicrosoftTeams、NowPush、Ntfy、Push、Pushback、PushBullet、PushDeer、PushMe、Pushover、PushPlus、QQ、RocketChat、ServerChan、ShowdocPush、SimplePush、Slack、Telegram、WeWork、WPush、XiZhi、YiFengChuanHua、ZohoCliq、ZohoCliqWebHook、Zulip).

682104.9k7](/packages/guanguans-notify)[tzsk/sms

A robust and unified SMS gateway integration package for Laravel, supporting multiple providers.

320244.3k6](/packages/tzsk-sms)

PHPackages © 2026

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