1. Go to this page and download the library: Download bahricanli/corvass 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/ */
bahricanli / corvass example snippets
/*
* Package Service Providers...
*/
NotificationChannels\Corvass\CorvassServiceProvider::class,
use NotificationChannels\Corvass\CorvassChannel;
use NotificationChannels\Corvass\CorvassMessage;
class ResetPasswordWasRequested extends Notification
{
/**
* Get the notification's delivery channels.
*
* @param mixed $notifiable
* @return array
*/
public function via($notifiable)
{
return [CorvassChannel::class];
}
/**
* Get the Corvass representation of the notification.
*
* @param mixed $notifiable
* @return string|\NotificationChannels\Corvass\CorvassMessage
*/
public function toCorvass($notifiable) {
return "Test notification";
// Or
return new ShortMessage($notifiable->phone_number, 'Test notification');
}
}
class User extends Authenticatable
{
use Notifiable;
public function routeNotificationForCorvass()
{
return "905123456789";
}
}