$chatId, 'text' => $message, 'parse_mode' => 'HTML' ]; try { $response = \Http::post($url, $data); return $response->successful(); } catch (\Exception $e) { \Log::error('Failed to send Telegram notification: ' . $e->getMessage()); return false; } } }