post('https://v3.api.termii.com/api/sms/send', [ 'api_key' => $apiKey, 'to' => $phone, 'from' => $senderId, 'sms' => $message, 'type' => 'plain', 'channel' => 'dnd', ]); } catch (\Throwable $e) { Log::warning('SMS send failed', ['to' => $phone, 'error' => $e->getMessage()]); } } }