You could look into sending an extra message manually
https://github.com/laravel-notification-channels/twilio/blob/master/src/Twilio.php#L41
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
Hello, each of my User model have two phone numbers on the users table, phone_num and secondary_phone_num.
For SMS I'm using Twilio notifications channel
On my model I have included the method
/**
* Route notifications for the Twilio channel.
*
* @return string
*/
public function routeNotificationForTwilio(){
return $this->phone_num;
}
Each time I send a notification, this sends it without any problem. But what about if I wanted to send the notification to both phone numbers?
The same applies to emails, I send also an email notification, but what if the user has more than an email and wanted to be sent the notification to both emails?
Any ideas on how to solve this issue? Thank you.
Please or to participate in this conversation.