App\Models\Store\OrderItem::refreshCost PHP Method

refreshCost() public method

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