首页 > 解决方案 > 如何用总价打折百分比类型?

问题描述

我需要使用购物车总价的百分比类型打折吗?

价格:

total_cart: 11,000

discoutn(percentage): 10%

我的闭嘴:

if ($this->coupon->type === "percentage") {
   return $total_cart * ($this->coupon->value / 100);
}

有了这段代码,我得到了这个结果1,100|:!

标签: laravel

解决方案


if ($this->coupon->type === "percentage") {
   return $total_cart * ((100-$this->coupon->value) / 100);
}

推荐阅读