zgabievi/laravel-smsoffice

This package is abandoned and no longer maintained. No replacement package was suggested.

SMSOffice Channel for Laravel Notifications

0.1.0 2017-09-30 17:08 UTC

This package is auto-updated.

Last update: 2021-01-30 02:52:09 UTC


README

Latest Version on Packagist Software License Build Status Coverage Status Quality Score StyleCI Total Downloads

Custom driver, SMSOffice, integration for Laravel Notifications

Table of Contents

Install

Via Composer

$ composer require zgabievi/laravel-smsoffice

If you do not run Laravel 5.5 (or higher), then follow next step:

// config/app.php
'providers' => [
    ...
    Gabievi\LaravelSMSOffice\SMSOfficeServiceProvider::class,
],

If you do run the package on Laravel 5.5+, package auto-discovery takes care of the magic of adding the service provider.

Optional you can publish the configuration to provide an own service provider stub.

php artisan vendor:publish --provider="Gabievi\LaravelSMSOffice\SMSOfficeServiceProvider"

Configuration

// config/services.php
...
'smsoffice' => [
    'key'  => env('SMSOFFICE_KEY'),
    'sender' => 'JOHN'
],
...

Usage

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

use Illuminate\Notifications\Notification;
use Gabievi\LaravelSMSOffice\SMSOfficeMessage;
use Gabievi\LaravelSMSOffice\SMSOfficeChannel;

class Welcome extends Notification
{
    //
    public function via($notifiable)
    {
        return [SMSOfficeChannel::class];
    }

    //
    public function toSMSOffice($notifiable)
    {
        return SMSOfficeMessage::create('Welcome to the real world!');
    }
}

In your notifiable model, make sure to include a routeNotificationForSmsoffice() method, which return the phone number.

//
public function routeNotificationForSmsoffice()
{
    return $this->phone;
}

Changelog

Please see CHANGELOG for more information on what has changed recently.

Testing

$ composer test

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email zura.gabievi@gmail.com instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.