where('name', 'like', $name.'%'); } public function type($type) { return $this->where('type', $type); } public function recommend($recommend){ return $this->where('is_recommend', $recommend); } public function show($show){ return $this->where('is_show', $show); } }