Example #1
0
 public function show($slug)
 {
     $theTag = DB::table('tags')->where('slug', $slug)->first();
     $series = Series::whereTag($slug)->get();
     return view('tag.show', compact('series', 'theTag'));
 }