namespace App\Notifications;
use Illuminate\Notifications\Notification;
use Undjike\CamooNotificationChannel\CamooChannel;
use Undjike\CamooNotificationChannel\CamooMessage;
class CamooNotification extends Notification
{
/**
* Get the notification's delivery channels.
*
* @param mixed $notifiable
* @return array
*/
public function via($notifiable)
{
return [CamooChannel::class]; // or return 'camoo';
}
/**
* @param $notifiable
* @return mixed
*/
public function toCamoo($notifiable)
{
return CamooMessage::create()
->body('Type here you message content...')
->sender('Brand name');
// or return 'Type here you message content...';
}
}
/**
* Attribute to use when addressing Camoo SMS notification
*
* @returns string|array
*/
public function routeNotificationForCamoo()
{
return $this->phone_number; // Can be a string or an array of valid phone numbers
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.