![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mcoil.corals.io/vendor/laravel/cashier/src/Concerns/ |
<?php namespace Laravel\Cashier\Concerns; trait AllowsCoupons { /** * The coupon ID being applied. * * @var string|null */ public $couponId; /** * The promotion code ID being applied. * * @var string|null */ public $promotionCodeId; /** * Determines if user redeemable promotion codes are available in Stripe Checkout. * * @var bool */ public $allowPromotionCodes = false; /** * The coupon ID to be applied. * * @param string $couponId * @return $this */ public function withCoupon($couponId) { $this->couponId = $couponId; return $this; } /** * The promotion code ID to apply. * * @param string $promotionCodeId * @return $this */ public function withPromotionCode($promotionCodeId) { $this->promotionCodeId = $promotionCodeId; return $this; } /** * Enables user redeemable promotion codes for a Stripe Checkout session. * * @return $this */ public function allowPromotionCodes() { $this->allowPromotionCodes = true; return $this; } /** * Return the discounts for a Stripe Checkout session. * * @return array[]|null */ protected function checkoutDiscounts() { if ($this->couponId) { return [['coupon' => $this->couponId]]; } if ($this->promotionCodeId) { return [['promotion_code' => $this->promotionCodeId]]; } } }