getById() public method

Get tag by id.
public getById ( $id ) : mixed
$id
return mixed
 /**
  * Redirect to tags with default tag.
  *
  * @param $id
  * @return \Illuminate\Http\RedirectResponse
  */
 public function showTag($id)
 {
     $tag = $this->tag->getById($id);
     return redirect('/tags')->with('default', $tag);
 }