1, 'is_del' => 0, 'is_verify' => 1]; return $this->hasOne(StoreProduct::class, 'id', 'right_id')->where($where)->field('id,price,store_name,image,stock'); } public function topic() { $where = ['is_del' => 0, 'status' => 1]; return $this->hasOne(CommunityTopic::class, 'id', 'right_id')->where($where)->field('id,name'); } public function community() { return $this->hasOne(Community::class, 'id', 'right_id'); } public function communityUser() { return $this->hasOne(CommunityUser::class, 'relation_id', 'right_id'); } public function communityFans() { return $this->hasOne(CommunityUser::class, 'relation_id', 'left_id'); } /** * 搜索器 * @param Model $query * @param $value */ public function searchLeftIdAttr($query, $value) { if (is_array($value)) { if ($value) { $query->whereIn('left_id', $value); } } else { if ($value !== '') { $query->where('left_id', $value); } } } /** * 搜索器 * @param $query * @param $value * @return void * User: liusl * DateTime: 2024/8/7 11:13 */ public function searchRightIdAttr($query, $value) { if (is_array($value)) { if ($value) { $query->whereIn('right_id', $value); } } else { if ($value !== '') { $query->where('right_id', $value); } } } /** * 搜索器 * @param $query * @param $value * @return void * User: liusl * DateTime: 2024/8/7 11:13 */ public function searchTypeAttr($query, $value) { if (is_array($value)) { if ($value) { $query->whereIn('type', $value); } } else { if ($value !== '') { $query->where('type', $value); } } } }