duration = $duration; $this->amountOff = $amountOff; $this->percentOff = $percentOff; $this->durationInMonths = $durationInMonths; } /** * Get the array form of the coupon. * * @return array */ public function toArray() { return [ 'amount_off' => $this->amountOff, 'duration' => $this->duration, 'duration_in_months' => $this->durationInMonths, 'percent_off' => $this->percentOff, ]; } }