myNotification = $msg; $this->notifiable = $notifiable; } /** * Get the notification's delivery channels. * * @param mixed $notifiable * @return array */ public function via($notifiable) { return ['nexmo']; } /** * Get the mail representation of the notification. * * @param mixed $notifiable * @return \Illuminate\Notifications\Messages\MailMessage */ public function toNexmo($notifiable) { return (new NexmoMessage) ->content($this->myNotification) ->unicode(); } }