/**
  * Redirect to list (no details will be showed)
  *
  * @param  Tags  $tags
  * @return \Illuminate\Http\Response
  */
 public function show(Tags $tags)
 {
     $todos = $tags->todos()->get();
     return $todos;
 }