1. Go to this page and download the library: Download cryptommer/smsir 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/ */
cryptommer / smsir example snippets
use Cryptommer\Smsir\Smsir;
public function routeNotificationForSmsir() {
return $this->phone_number
}
public function via() {
return [\Cryptommer\Smsir\Notifications\SmsirChannel::class] // or 'smsir'
}
public function toSmsir(object $notifiable) {
/**
* template_id string
* parameters array of key and value that key equal to the key in template id
*/
return new \Cryptommer\Smsir\Notifications\SmsirMessage()
->template_id($template_id)
->parameters($parameters)
}
use Cryptommer\Smsir\Classes\Smsir;
$smsir = new Smsir($line_number, $api_key)