Owl\Repositories\Eloquent\TagRepository::getById PHP Method

getById() public method

get a tag by tag id.
public getById ( integer $id ) : Collection
$id integer
return Collection
    public function getById($id)
    {
        return $this->tag->where('id', $id)->first();
    }