LukePOLO\LaraCart\CartSubItem::find PHP Method

find() public method

Search for matching options on the item.
public find ( $data ) : mixed
return mixed
    public function find($data)
    {
        foreach ($data as $key => $value) {
            if ($this->{$key} === $value) {
                return $this;
            }
        }
    }