Owl\Repositories\Fluent\TagFtsRepository::getById PHP Method

getById() public method

get a tagFts by tag_id.
public getById ( $tag_id ) : void
return void
    public function getById($tag_id)
    {
        return \DB::table($this->getTableName())->where($this->getTableName() . '.tag_id', $tag_id)->first();
    }