Another notification channel for Laravel, this one allows you to send SMS messages thought SmsGlobal service!
Here's an example of easily sending an SMS using Laravel notifications:
public function toSmsGlobal($notifiable): SmsGlobalMessage { $message = 'Order paid, Thank you for your business!'; $smsGlobal = new SmsGlobalMessage(); return $smsGlobal->to($notifiable->phone)->content($message); }