order = $order; $this->order->load('customer', 'shipping_address', 'billing_address'); $this->oldOrder = $oldOrder; $this->oldOrder->load('customer', 'shipping_address', 'billing_address'); } public function toArray(): array { return [ 'order' => $this->order, 'old_order' => $this->oldOrder ]; } public function getActivityEventModel() { return $this->order; } }