LukePOLO\LaraCart\CartItem::getDiscount PHP 메소드

getDiscount() 공개 메소드

Gets the discount of an item.
public getDiscount ( boolean $format = true ) : string
$format boolean
리턴 string
    public function getDiscount($format = true)
    {
        $amount = 0;
        if (app('laracart')->findCoupon($this->code)) {
            $amount = $this->discount;
        }
        return LaraCart::formatMoney($amount, $this->locale, $this->internationalFormat, $format);
    }