/**
  * View posts by tags
  */
 public function showTag($tagSlug)
 {
     $tag = IlluminateTag::whereSlug($tagSlug)->first();
     $posts = Post::withTag($tag->slug)->get();
     return view('posts.tags.index')->with('tag', $tag)->with('posts', $posts);
 }