websms/laravel-notification is a Laravel package for websms laravel notification.
It currently has 1 GitHub stars and 16.142 downloads on Packagist (latest version 1.0.0).
Install it with composer require websms/laravel-notification.
Discover more Laravel packages by websms
or browse all Laravel packages to compare alternatives.
Last updated
WebSms Laravel Notification
You can install the package via composer:
$ composer require websms/laravel-notification
You must install the service provider:
// config/app.php
'providers' => [
...
Websms\LaravelNotification\WebSmsServiceProvider::class,
]
Add your WebSms Username, Password and Sender Number to your config/services.php:
// config/services.php
...
'websms' => [
'username' => env('WEBSMS_USERNAME'),
'password' => env('WEBSMS_PASSWORD'),
'sendNumber' => env('WEBSMS_SENDNUMBER'),
],
...
// .env
WEBSMS_USERNAME=your_username
WEBSMS_PASSWORD=your_password
WEBSMS_SENDNUMBER=send_number
Now you can use the channel in your via() method inside the notification:
/**
* Get the notification's delivery channels.
*
* @param mixed $notifiable
* @return array
*/
public function via($notifiable)
{
return [WebSmsChannel::class];
}
/**
* Get the sms representation of the notification.
*
* @param mixed $notifiable
* @return string
*/
public function toSms($notifiable)
{
$webSmsMessage = new WebSmsMessage();
$webSmsMessage->setFrom(env('WEBSMS_SENDNUMBER'));
$webSmsMessage->setTo($notifiable->routeNotificationFor('sms'));
$webSmsMessage->setMessage($this->message);
return $webSmsMessage;
}
In order to let your Notification know which phone number you are sending to, add the routeNotificationForSms method to your Notifiable model e.g your User Model
public function routeNotificationForSms()
{
return $this->phone; // where `phone` is a field in your users table;
}