App\Models\Store\OrderItem::refreshCost PHP 메소드

refreshCost() 공개 메소드

public refreshCost ( )
    public function refreshCost()
    {
        if ($this->product->cost === null) {
            return;
        }
        $this->cost = $this->product->cost;
    }