Beispiel #1
0
 /**
  * Display the specified resource.
  *
  * @param  Blog $blog
  * @return view
  */
 public function show(Blog $blog)
 {
     $comments = BlogComment::all();
     return view('admin.blog.show', compact('blog', 'comments', 'tags'));
 }