1. Go to this page and download the library: Download altrntv/sms-ru 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/ */
use Altrntv\SmsRu\SmsRuMessage;
use Altrntv\SmsRu\SmsRuChannel;
use Illuminate\Notifications\Notification;
class OrderStatus extends Notification
{
public function via(mixed $notifiable): array
{
return [
SmsRuChannel::class,
];
}
public function toSmsRu(mixed $notifiable): SmsRuMessage
{
return SmsRuMessage::create('Message');
}
}
public function routeNotificationForSmsRu(): ?string
{
return $this->phone;
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.