onQueue('send_telegram'); $this->telegramId = $telegramId; $this->text = $text; } /** * Execute the job. * * @return void */ public function handle() { $telegramService = new TelegramService(); $telegramService->sendMessage($this->telegramId, $this->text, 'markdown'); } }