PHPackages                             dubems/app-web-sms - 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. dubems/app-web-sms

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

dubems/app-web-sms
==================

Laravel Package to send notifications using AppWebSms

v1.0(9y ago)25MITPHP

Since Jun 13Pushed 8y ago1 watchersCompare

[ Source](https://github.com/dubems/AppWebSms)[ Packagist](https://packagist.org/packages/dubems/app-web-sms)[ RSS](/packages/dubems-app-web-sms/feed)WikiDiscussions master Synced 4w ago

READMEChangelog (1)Dependencies (4)Versions (2)Used By (0)

AppWebSms notifications channel for Laravel 5.4
===============================================

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

This package makes it easy to send [AppWebSms notifications](https://www.appwebsms.com) with Laravel 5.4.

Contents
--------

[](#contents)

- [Installation](#installation)
    - [Setting up your AppWebSms account](#setting-up-your-AppWebSms-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 dubems/app-web-sms
```

You must install the service provider:

```
// config/app.php
'providers' => [
    ...
    AppWebSms\AppWebSmsServiceProvider::class,
],
```

### Setting up your AppWebSms account

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

Add your AppWebSms Account Name, Account Password, and Sender (The sender ID to show on receiver's phone) to your `config/services.php`:

```
// config/services.php
...
'appwebsms' => [
    'username' => 'Your username',
    'password' => 'Your password',
    'sender'   => 'Dubem'
],
...
```

Usage
-----

[](#usage)

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

```
use AppWebSms\AppWebSmsChannel;
use AppWebSms\AppWebSmsMessage;
use Illuminate\Notifications\Notification;

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

    public function toAppWebSms($notifiable)
    {
        return (new AppWebSmsMessage('Your {$notifiable->service} account was approved!'));
    }
}
```

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

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

### Available Message methods

[](#available-message-methods)

#### AppWebSmsMessage

[](#appwebsmsmessage)

- `setMesssage('')` : Accepts a string value for the notification body.
- `setSchedule('2017-01-13 10:30:04')` : Accepts a date-time string for when the notification should be sent.

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)

- [Nriagu Chidubem](https://github.com/dubems)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

###  Health Score

27

—

LowBetter than 47% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity63

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

Unknown

Total

1

Last Release

3303d ago

### Community

Maintainers

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

---

Top Contributors

[![dubems](https://avatars.githubusercontent.com/u/8695632?v=4)](https://github.com/dubems "dubems (11 commits)")

---

Tags

laravelnotificationsphp

### Embed Badge

![Health badge](/badges/dubems-app-web-sms/health.svg)

```
[![Health](https://phpackages.com/badges/dubems-app-web-sms/health.svg)](https://phpackages.com/packages/dubems-app-web-sms)
```

###  Alternatives

[spatie/laravel-health

Monitor the health of a Laravel application

87411.3M154](/packages/spatie-laravel-health)[craftcms/cms

Craft CMS

3.6k3.6M2.9k](/packages/craftcms-cms)[laravel-notification-channels/telegram

Telegram Notifications Channel for Laravel

1.1k3.7M42](/packages/laravel-notification-channels-telegram)[s-ichikawa/laravel-sendgrid-driver

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

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

A Laravel Notification Channel for Microsoft Teams

1613.2M11](/packages/laravel-notification-channels-microsoft-teams)[erag/laravel-disposable-email

A Laravel package to detect and block disposable email addresses.

252143.0k](/packages/erag-laravel-disposable-email)

PHPackages © 2026

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