order = $order; } /** * Execute the job. * * @return void */ public function handle() { $send_data = [ 'type' => 'closed_microorder', 'to' => $this->order->user_id, 'data' => $this->order, ]; dump(UserChat::sendText($send_data)); } }