lastError; } private function base(): string { return rtrim((string) config('sms.platform_api_url', 'https://ladill.com/api'), '/'); } private function token(): string { return (string) config('sms.platform_api_key', ''); } public function isConfigured(): bool { return $this->token() !== ''; } public function send( string $ownerPublicId, string $to, string $message, ?string $senderId = null, ?string $idempotencyKey = null, ): bool { $this->lastError = null; if (! $this->isConfigured()) { $this->lastError = 'SMS is not configured on this Events instance.'; return false; } $key = $idempotencyKey ?: ('events-sms-'.Str::uuid()); try { $res = Http::withToken($this->token()) ->withHeaders(['Idempotency-Key' => $key]) ->acceptJson() ->timeout(30) ->post($this->base().'/sms/messages/send', array_filter([ 'user' => $ownerPublicId, 'channel' => 'suite', 'to' => $to, 'text' => $message, 'sender_id' => $senderId ?? config('sms.default_sender_id'), 'reference' => $key, ], static fn ($v) => $v !== null && $v !== '')); if ($res->status() === 402) { $this->lastError = (string) ($res->json('error') ?: 'SMS allowance exceeded. Upgrade your plan or top up your wallet.'); Log::warning('Events suite SMS: allowance/balance', ['user' => $ownerPublicId]); return false; } if ($res->failed()) { $this->lastError = (string) ($res->json('error') ?: 'The SMS could not be sent.'); Log::warning('Events suite SMS failed', ['status' => $res->status(), 'body' => $res->body()]); return false; } return (bool) ($res->json('success') ?? true); } catch (\Throwable $e) { $this->lastError = 'Could not reach the SMS service.'; Log::warning('Events suite SMS error', ['error' => $e->getMessage()]); return false; } } }