order = $order->withoutRelations(); } /** * Execute the job. * * @return void */ public function handle(OrderRejectedBillRelationService $service) { if (!$this->order) return; $service->orderSyncRejectedBill($this->order); } }