order = $order; $this->coupon = $coupon; $this->initAttributes(); } protected function initAttributes() { [ 'amount' => $this->getAmount(), 'order_id' => $this->order->id, 'coupon_id' => $this->coupon->id, 'amount' => $this->getAmount(), ]; } public function getAmount() { return 100; } }