arr = $arr; } /** * Execute the job. * * @return void */ public function handle() { if (!$this->arr)return; $codes = array_column($this->arr,"code"); $orders = Order::query()->with("logistic")->where("code",$codes)->get(); foreach ($orders as $order) app("WaybillService")->createDbBill($order); } }