news
This commit is contained in:
@ -57,4 +57,23 @@ class TagService
|
||||
return $queryBuilder->whereIn("id", $entityIdArr)->get();
|
||||
}
|
||||
|
||||
public static function getEntityByTagSlug(string $tagSlug, $model)
|
||||
{
|
||||
$tag = Tag::where("slug", $tagSlug)->first();
|
||||
if ($tag){
|
||||
$tagEntity = TagEntity::where("tag_id", $tag->id)->get();
|
||||
if ($tagEntity){
|
||||
$entityIdArr = [];
|
||||
foreach ($tagEntity as $item){
|
||||
$entityIdArr[] = $item['entity_id'];
|
||||
}
|
||||
}
|
||||
$queryBuilder = $model::query();
|
||||
|
||||
return $queryBuilder->whereIn("id", $entityIdArr)->get();
|
||||
}
|
||||
|
||||
return [];
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user