laravel-smsoffice
![Software License][ico-license]
![Coverage Status][ico-scrutinizer]
![Total Downloads][ico-downloads], (*1)
Custom driver, SMSOffice, integration for Laravel Notifications, (*2)
Table of Contents
Install
Via Composer, (*3)
$ composer require zgabievi/laravel-smsoffice
If you do not run Laravel 5.5 (or higher), then follow next step:, (*4)
// 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., (*5)
Optional you can publish the configuration to provide an own service provider stub., (*6)
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:, (*7)
``` php
use Illuminate\Notifications\Notification;
use Gabievi\LaravelSMSOffice\SMSOfficeMessage;
use Gabievi\LaravelSMSOffice\SMSOfficeChannel;, (*8)
class Welcome extends Notification
{
//
public function via($notifiable)
{
return [SMSOfficeChannel::class];
}, (*9)
//
public function toSMSOffice($notifiable)
{
return SMSOfficeMessage::create('Welcome to the real world!');
}
}, (*10)
In your notifiable model, make sure to include a routeNotificationForSmsoffice() method, which return the phone number.
```php
//
public function routeNotificationForSmsoffice()
{
return $this->phone;
}
Changelog
Please see CHANGELOG for more information on what has changed recently., (*11)
Testing
bash
$ composer test, (*12)
Contributing
Please see CONTRIBUTING for details., (*13)
Security
If you discover any security related issues, please email zura.gabievi@gmail.com instead of using the issue tracker., (*14)
Credits
License
The MIT License (MIT). Please see License File for more information., (*15)