client = new Client(config('services.twilio.sid'), config('services.twilio.token')); } /** * @throws TwilioException */ public function sendSms(string $to, string $message): void { $this->client->messages->create($to, ['from' => config('services.twilio.from'), 'body' => $message]); } }