LukePOLO\LaraCart\CartSubItem::find PHP 메소드

find() 공개 메소드

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