PHP code example of irajtaghlidi / laravel-asanak-sms
1. Go to this page and download the library: Download irajtaghlidi/laravel-asanak-sms 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/ */
irajtaghlidi / laravel-asanak-sms example snippets
use Illuminate\Notifications\Notification;
use NotificationChannels\AsanakSms\AsanakSmsMessage;
use NotificationChannels\AsanakSms\AsanakSmsChannel;
class AccountApproved extends Notification
{
public function via($notifiable)
{
return [AsanakSmsChannel::class];
}
public function toAsanakSms($notifiable)
{
return AsanakSmsMessage::create("Task #{$notifiable->id} is complete!");
}
}
use Illuminate\Notifications\Notification;
use NotificationChannels\AsanakSms\AsanakSmsMessage;
class AccountApproved extends Notification
{
public function via($notifiable)
{
return ['asanaksms'];
}
public function toAsanakSms($notifiable)
{
return AsanakSmsMessage::create("Task #{$notifiable->id} is complete!");
}
}
public function routeNotificationForAsanaksms()
{
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.