Custom driver, SMSOffice, integration for Laravel Notifications
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"
// config/services.php
...
'smsoffice' => [
'key' => env('SMSOFFICE_KEY'),
'sender' => 'JOHN'
],
...
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;
}
Please see CHANGELOG for more information on what has changed recently.
$ composer test
Please see CONTRIBUTING for details.
If you discover any security related issues, please email zura.gabievi@gmail.com instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.