Beispiel #1
0
 public function show(Tag $tag)
 {
     $posts = $tag->posts()->withMeta()->orderedByScore()->paginate();
     return view('forum::tags.show', compact('tag', 'posts'));
 }