PHP code example of sikhlana / laravel-greenweb-sms-channel
1. Go to this page and download the library: Download sikhlana/laravel-greenweb-sms-channel library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
sikhlana / laravel-greenweb-sms-channel example snippets
php
// config/app.php
'providers' => [
...
Sikhlana\GreenwebSmsChannel\ServiceProvider::class,
],
php
use Sikhlana\GreenwebSmsChannel\GreenwebChannel;
use Sikhlana\GreenwebSmsChannel\GreenwebMessage;
use Illuminate\Notifications\Notification;
class AccountApproved extends Notification
{
public function via($notifiable)
{
return [GreenwebChannel::class];
}
public function toGreenweb($notifiable)
{
return (new GreenwebMessage())
->content("Your {$notifiable->service} account was approved!");
}
}
php
public function routeNotificationForGreenweb()
{
return '01765432109';
}