use Illuminate\Notifications\Notification;
use NotificationChannels\TurboSMS\TurboSMSMessage;
class AccountApproved extends Notification
{
public function via($notifiable)
{
return ["turbosms"];
}
public function toTurboSMS($notifiable)
{
return (new TurboSMSMessage("Your account was approved!"));
}
}
public function routeNotificationForTurboSMS()
{
return $this->phone;
}